Package net.bytebuddy.implementation
Interface InvokeDynamic.InvocationProvider.Target.Resolved
-
- All Known Implementing Classes:
InvokeDynamic.InvocationProvider.Target.Resolved.Simple
- Enclosing interface:
- InvokeDynamic.InvocationProvider.Target
public static interface InvokeDynamic.InvocationProvider.Target.ResolvedRepresents a resolvedInvokeDynamic.InvocationProvider.Target.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classInvokeDynamic.InvocationProvider.Target.Resolved.SimpleA simple implementation ofInvokeDynamic.InvocationProvider.Target.Resolved.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetInternalName()Returns the internal name of the requested method.java.util.List<TypeDescription>getParameterTypes()Returns the types of the values on the operand stack.TypeDescriptiongetReturnType()Returns the requested return type.StackManipulationgetStackManipulation()Returns the stack manipulation that loads the arguments onto the operand stack.
-
-
-
Method Detail
-
getStackManipulation
StackManipulation getStackManipulation()
Returns the stack manipulation that loads the arguments onto the operand stack.- Returns:
- The stack manipulation that loads the arguments onto the operand stack.
-
getReturnType
TypeDescription getReturnType()
Returns the requested return type.- Returns:
- The requested return type.
-
getInternalName
java.lang.String getInternalName()
Returns the internal name of the requested method.- Returns:
- The internal name of the requested method.
-
getParameterTypes
java.util.List<TypeDescription> getParameterTypes()
Returns the types of the values on the operand stack.- Returns:
- The types of the values on the operand stack.
-
-