Package | Description |
---|---|
jersey.repackaged.org.objectweb.asm |
Modifier and Type | Method and Description |
---|---|
Handle |
ConstantDynamic.getBootstrapMethod()
Returns the bootstrap method used to compute the value of this constant.
|
Modifier and Type | Method and Description |
---|---|
int |
ClassWriter.newConstantDynamic(String name,
String descriptor,
Handle bootstrapMethodHandle,
Object... bootstrapMethodArguments)
Adds a dynamic constant reference to the constant pool of the class being build.
|
int |
ClassWriter.newInvokeDynamic(String name,
String descriptor,
Handle bootstrapMethodHandle,
Object... bootstrapMethodArguments)
Adds an invokedynamic reference to the constant pool of the class being build.
|
void |
MethodVisitor.visitInvokeDynamicInsn(String name,
String descriptor,
Handle bootstrapMethodHandle,
Object... bootstrapMethodArguments)
Visits an invokedynamic instruction.
|
Constructor and Description |
---|
ConstantDynamic(String name,
String descriptor,
Handle bootstrapMethod,
Object... bootstrapMethodArguments)
Constructs a new
ConstantDynamic . |
Copyright © 2007-2021, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.