Package net.bytebuddy.implementation
Interface InvokeDynamic.InvocationProvider.ArgumentProvider.Resolved
-
- All Known Implementing Classes:
InvokeDynamic.InvocationProvider.ArgumentProvider.Resolved.Simple
- Enclosing interface:
- InvokeDynamic.InvocationProvider.ArgumentProvider
public static interface InvokeDynamic.InvocationProvider.ArgumentProvider.Resolved
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
InvokeDynamic.InvocationProvider.ArgumentProvider.Resolved.Simple
A simple implementation of a resolved argument provider.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<TypeDescription>
getLoadedTypes()
Returns a list of all types of the arguments that were loaded onto the operand stack.StackManipulation
getLoadInstruction()
Returns a stack manipulation that loads the arguments onto the operand stack.
-
-
-
Method Detail
-
getLoadInstruction
StackManipulation getLoadInstruction()
Returns a stack manipulation that loads the arguments onto the operand stack.- Returns:
- A stack manipulation that loads the arguments onto the operand stack.
-
getLoadedTypes
java.util.List<TypeDescription> getLoadedTypes()
Returns a list of all types of the arguments that were loaded onto the operand stack.- Returns:
- A list of all types of the arguments that were loaded onto the operand stack.
-
-