java.lang.Object
java.lang.constant.DynamicConstantDesc<T>
- Type Parameters:
- T- the type of the dynamic constant
- All Implemented Interfaces:
- ConstantDesc
- Direct Known Subclasses:
- Enum.EnumDesc,- VarHandle.VarHandleDesc
public abstract class DynamicConstantDesc<T> extends Object implements ConstantDesc
A nominal descriptor for a
 dynamic constant (one described in the constant pool with
 
Constant_Dynamic_info.)
 Concrete subtypes of DynamicConstantDesc must be value-based.
- Since:
- 12
- 
Constructor SummaryConstructors Modifier Constructor Description protectedDynamicConstantDesc(DirectMethodHandleDesc bootstrapMethod, String constantName, ClassDesc constantType, ConstantDesc... bootstrapArgs)Creates a nominal descriptor for a dynamic constant.
- 
Method SummaryModifier and Type Method Description ConstantDesc[]bootstrapArgs()Returns the bootstrap arguments for this constant.List<ConstantDesc>bootstrapArgsList()Returns the bootstrap arguments for this constant as an immutableList.DirectMethodHandleDescbootstrapMethod()Returns aMethodHandleDescdescribing the bootstrap method for this constant.StringconstantName()Returns the name that would appear in theNameAndTypeoperand of theLDCfor this constant.ClassDescconstantType()Returns aClassDescdescribing the type that would appear in theNameAndTypeoperand of theLDCfor this constant.booleanequals(Object o)Compares the specified object with this descriptor for equality.static <T> DynamicConstantDesc<T>of(DirectMethodHandleDesc bootstrapMethod)Returns a nominal descriptor for a dynamic constant whose bootstrap has no static arguments, whose name parameter isConstantDescs.DEFAULT_NAME, and whose type parameter is always the same as the bootstrap method return type.static <T> DynamicConstantDesc<T>of(DirectMethodHandleDesc bootstrapMethod, ConstantDesc... bootstrapArgs)Returns a nominal descriptor for a dynamic constant whose name parameter isConstantDescs.DEFAULT_NAME, and whose type parameter is always the same as the bootstrap method return type.static <T> ConstantDescofCanonical(DirectMethodHandleDesc bootstrapMethod, String constantName, ClassDesc constantType, ConstantDesc[] bootstrapArgs)Returns a nominal descriptor for a dynamic constant, transforming it into a more specific type if the constant bootstrap is a well-known one and a more specific nominal descriptor type (e.g., ClassDesc) is available.static <T> DynamicConstantDesc<T>ofNamed(DirectMethodHandleDesc bootstrapMethod, String constantName, ClassDesc constantType, ConstantDesc... bootstrapArgs)Returns a nominal descriptor for a dynamic constant.StringtoString()Returns a compact textual description of this constant description, including the bootstrap method, the constant name and type, and the static bootstrap arguments.
- 
Constructor Details- 
DynamicConstantDescprotected DynamicConstantDesc(DirectMethodHandleDesc bootstrapMethod, String constantName, ClassDesc constantType, ConstantDesc... bootstrapArgs)Creates a nominal descriptor for a dynamic constant.- Parameters:
- bootstrapMethod- a- DirectMethodHandleDescdescribing the bootstrap method for the constant
- constantName- The unqualified name that would appear in the- NameAndTypeoperand of the- LDCfor this constant
- constantType- a- ClassDescdescribing the type that would appear in the- NameAndTypeoperand of the- LDCfor this constant
- bootstrapArgs-- ConstantDescs describing the static arguments to the bootstrap, that would appear in the- BootstrapMethodsattribute
- Throws:
- NullPointerException- if any argument is null
- IllegalArgumentException- if the- namehas the incorrect format
- See Java Virtual Machine Specification:
- 
4.2.2 Unqualified Names
 
 
- 
- 
Method Details- 
ofCanonicalpublic static <T> ConstantDesc ofCanonical(DirectMethodHandleDesc bootstrapMethod, String constantName, ClassDesc constantType, ConstantDesc[] bootstrapArgs)Returns a nominal descriptor for a dynamic constant, transforming it into a more specific type if the constant bootstrap is a well-known one and a more specific nominal descriptor type (e.g., ClassDesc) is available.Classes whose Constable.describeConstable()method produce a DynamicConstantDesc with a well-known bootstrap includingClass(for instances describing primitive types),Enum, andVarHandle.Bytecode-reading APIs that process the constant pool and wish to expose entries as ConstantDescto their callers should generally use this method in preference toofNamed(DirectMethodHandleDesc, String, ClassDesc, ConstantDesc...)because this may result in a more specific type that can be provided to callers.- Type Parameters:
- T- the type of the dynamic constant
- Parameters:
- bootstrapMethod- a- DirectMethodHandleDescdescribing the bootstrap method for the constant
- constantName- The unqualified name that would appear in the- NameAndTypeoperand of the- LDCfor this constant
- constantType- a- ClassDescdescribing the type that would appear in the- NameAndTypeoperand of the- LDCfor this constant
- bootstrapArgs-- ConstantDescs describing the static arguments to the bootstrap, that would appear in the- BootstrapMethodsattribute
- Returns:
- the nominal descriptor
- Throws:
- NullPointerException- if any argument is null
- IllegalArgumentException- if the- namehas the incorrect format
- See Java Virtual Machine Specification:
- 
4.2.2 Unqualified Names
 
- 
ofNamedpublic static <T> DynamicConstantDesc<T> ofNamed(DirectMethodHandleDesc bootstrapMethod, String constantName, ClassDesc constantType, ConstantDesc... bootstrapArgs)Returns a nominal descriptor for a dynamic constant.- Type Parameters:
- T- the type of the dynamic constant
- Parameters:
- bootstrapMethod- a- DirectMethodHandleDescdescribing the bootstrap method for the constant
- constantName- The unqualified name that would appear in the- NameAndTypeoperand of the- LDCfor this constant
- constantType- a- ClassDescdescribing the type that would appear in the- NameAndTypeoperand of the- LDCfor this constant
- bootstrapArgs-- ConstantDescs describing the static arguments to the bootstrap, that would appear in the- BootstrapMethodsattribute
- Returns:
- the nominal descriptor
- Throws:
- NullPointerException- if any argument is null
- IllegalArgumentException- if the- namehas the incorrect format
- See Java Virtual Machine Specification:
- 
4.2.2 Unqualified Names
 
- 
ofpublic static <T> DynamicConstantDesc<T> of(DirectMethodHandleDesc bootstrapMethod, ConstantDesc... bootstrapArgs)Returns a nominal descriptor for a dynamic constant whose name parameter isConstantDescs.DEFAULT_NAME, and whose type parameter is always the same as the bootstrap method return type.- Type Parameters:
- T- the type of the dynamic constant
- Parameters:
- bootstrapMethod- a- DirectMethodHandleDescdescribing the bootstrap method for the constant
- bootstrapArgs-- ConstantDescs describing the static arguments to the bootstrap, that would appear in the- BootstrapMethodsattribute
- Returns:
- the nominal descriptor
- Throws:
- NullPointerException- if any argument is null
- See Java Virtual Machine Specification:
- 
4.2.2 Unqualified Names
 
- 
ofReturns a nominal descriptor for a dynamic constant whose bootstrap has no static arguments, whose name parameter isConstantDescs.DEFAULT_NAME, and whose type parameter is always the same as the bootstrap method return type.- Type Parameters:
- T- the type of the dynamic constant
- Parameters:
- bootstrapMethod- a- DirectMethodHandleDescdescribing the bootstrap method for the constant
- Returns:
- the nominal descriptor
- Throws:
- NullPointerException- if any argument is null
 
- 
constantNameReturns the name that would appear in theNameAndTypeoperand of theLDCfor this constant.- Returns:
- the constant name
 
- 
constantTypeReturns aClassDescdescribing the type that would appear in theNameAndTypeoperand of theLDCfor this constant.- Returns:
- the constant type
 
- 
bootstrapMethodReturns aMethodHandleDescdescribing the bootstrap method for this constant.- Returns:
- the bootstrap method
 
- 
bootstrapArgsReturns the bootstrap arguments for this constant.- Returns:
- the bootstrap arguments
 
- 
bootstrapArgsListReturns the bootstrap arguments for this constant as an immutableList.- Returns:
- a Listof the bootstrap arguments
 
- 
equalsCompares the specified object with this descriptor for equality. Returnstrueif and only if the specified object is also a DynamicConstantDesc, and both descriptors have equal bootstrap methods, bootstrap argument lists, constant name, and constant type.- Overrides:
- equalsin class- Object
- Parameters:
- o- the- DynamicConstantDescto compare to this- DynamicConstantDesc
- Returns:
- trueif the specified- DynamicConstantDescis equals to this- DynamicConstantDesc.
- See Also:
- Object.hashCode(),- HashMap
 
- 
toStringReturns a compact textual description of this constant description, including the bootstrap method, the constant name and type, and the static bootstrap arguments.
 
-