Package org.objectweb.asm
Class ConstantDynamic
- java.lang.Object
-
- org.objectweb.asm.ConstantDynamic
-
public final class ConstantDynamic extends java.lang.ObjectA constant whose value is computed at runtime, with a bootstrap method.
-
-
Field Summary
Fields Modifier and Type Field Description private HandlebootstrapMethodThe bootstrap method to use to compute the constant value at runtime.private java.lang.Object[]bootstrapMethodArgumentsThe arguments to pass to the bootstrap method, in order to compute the constant value at runtime.private java.lang.StringdescriptorThe constant type (must be a field descriptor).private java.lang.StringnameThe constant name (can be arbitrary).
-
Constructor Summary
Constructors Constructor Description ConstantDynamic(java.lang.String name, java.lang.String descriptor, Handle bootstrapMethod, java.lang.Object... bootstrapMethodArguments)Constructs a newConstantDynamic.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object object)HandlegetBootstrapMethod()Returns the bootstrap method used to compute the value of this constant.java.lang.ObjectgetBootstrapMethodArgument(int index)Returns an argument passed to the bootstrap method, in order to compute the value of this constant.intgetBootstrapMethodArgumentCount()Returns the number of arguments passed to the bootstrap method, in order to compute the value of this constant.(package private) java.lang.Object[]getBootstrapMethodArgumentsUnsafe()Returns the arguments to pass to the bootstrap method, in order to compute the value of this constant.java.lang.StringgetDescriptor()Returns the type of this constant.java.lang.StringgetName()Returns the name of this constant.intgetSize()Returns the size of this constant.inthashCode()java.lang.StringtoString()
-
-
-
Field Detail
-
name
private final java.lang.String name
The constant name (can be arbitrary).
-
descriptor
private final java.lang.String descriptor
The constant type (must be a field descriptor).
-
bootstrapMethod
private final Handle bootstrapMethod
The bootstrap method to use to compute the constant value at runtime.
-
bootstrapMethodArguments
private final java.lang.Object[] bootstrapMethodArguments
The arguments to pass to the bootstrap method, in order to compute the constant value at runtime.
-
-
Constructor Detail
-
ConstantDynamic
public ConstantDynamic(java.lang.String name, java.lang.String descriptor, Handle bootstrapMethod, java.lang.Object... bootstrapMethodArguments)Constructs a newConstantDynamic.- Parameters:
name- the constant name (can be arbitrary).descriptor- the constant type (must be a field descriptor).bootstrapMethod- the bootstrap method to use to compute the constant value at runtime.bootstrapMethodArguments- the arguments to pass to the bootstrap method, in order to compute the constant value at runtime.
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the name of this constant.- Returns:
- the name of this constant.
-
getDescriptor
public java.lang.String getDescriptor()
Returns the type of this constant.- Returns:
- the type of this constant, as a field descriptor.
-
getBootstrapMethod
public Handle getBootstrapMethod()
Returns the bootstrap method used to compute the value of this constant.- Returns:
- the bootstrap method used to compute the value of this constant.
-
getBootstrapMethodArgumentCount
public int getBootstrapMethodArgumentCount()
Returns the number of arguments passed to the bootstrap method, in order to compute the value of this constant.- Returns:
- the number of arguments passed to the bootstrap method, in order to compute the value of this constant.
-
getBootstrapMethodArgument
public java.lang.Object getBootstrapMethodArgument(int index)
Returns an argument passed to the bootstrap method, in order to compute the value of this constant.- Parameters:
index- an argument index, between 0 andgetBootstrapMethodArgumentCount()(exclusive).- Returns:
- the argument passed to the bootstrap method, with the given index.
-
getBootstrapMethodArgumentsUnsafe
java.lang.Object[] getBootstrapMethodArgumentsUnsafe()
Returns the arguments to pass to the bootstrap method, in order to compute the value of this constant. WARNING: this array must not be modified, and must not be returned to the user.- Returns:
- the arguments to pass to the bootstrap method, in order to compute the value of this constant.
-
getSize
public int getSize()
Returns the size of this constant.- Returns:
- the size of this constant, i.e., 2 for
longanddouble, 1 otherwise.
-
equals
public boolean equals(java.lang.Object object)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-