Uses of Class
org.springframework.asm.Handle
Packages that use Handle Package Description org.springframework.asm Spring's repackaging of ASM 7.0 (with Spring-specific patches; for internal use only).Uses of Handle in org.springframework.asm
Methods in org.springframework.asm that return Handle Modifier and Type Method Description HandleConstantDynamic. getBootstrapMethod()Returns the bootstrap method used to compute the value of this constant.Methods in org.springframework.asm with parameters of type Handle Modifier and Type Method Description intClassWriter. newConstantDynamic(String name, String descriptor, Handle bootstrapMethodHandle, Object... bootstrapMethodArguments)Adds a dynamic constant reference to the constant pool of the class being build.intClassWriter. newInvokeDynamic(String name, String descriptor, Handle bootstrapMethodHandle, Object... bootstrapMethodArguments)Adds an invokedynamic reference to the constant pool of the class being build.voidMethodVisitor. visitInvokeDynamicInsn(String name, String descriptor, Handle bootstrapMethodHandle, Object... bootstrapMethodArguments)Visits an invokedynamic instruction.Constructors in org.springframework.asm with parameters of type Handle Constructor Description ConstantDynamic(String name, String descriptor, Handle bootstrapMethod, Object... bootstrapMethodArguments)Constructs a newConstantDynamic.