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.Resolved
Represents a resolvedInvokeDynamic.InvocationProvider.Target
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
InvokeDynamic.InvocationProvider.Target.Resolved.Simple
A simple implementation ofInvokeDynamic.InvocationProvider.Target.Resolved
.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getInternalName()
Returns the internal name of the requested method.java.util.List<TypeDescription>
getParameterTypes()
Returns the types of the values on the operand stack.TypeDescription
getReturnType()
Returns the requested return type.StackManipulation
getStackManipulation()
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.
-
-