java.lang.Object
java.lang.constant.ConstantDescs
public final class ConstantDescs extends Object
Predefined values of nominal descriptor
for common constants, including descriptors for primitive class types and
other common platform types, and descriptors for method handles for standard
bootstrap methods.
- Since:
- 12
- See Also:
ConstantDesc
-
Field Summary
-
Method Summary
Modifier and Type Method Description static DirectMethodHandleDesc
ofCallsiteBootstrap(ClassDesc owner, String name, ClassDesc returnType, ClassDesc... paramTypes)
Returns aMethodHandleDesc
corresponding to a bootstrap method for aninvokedynamic
callsite, which is a static method whose leading parameter types areLookup
,String
, andMethodType
.static DirectMethodHandleDesc
ofConstantBootstrap(ClassDesc owner, String name, ClassDesc returnType, ClassDesc... paramTypes)
Returns aMethodHandleDesc
corresponding to a bootstrap method for a dynamic constant, which is a static method whose leading arguments areLookup
,String
, andClass
.
-
Field Details
-
DEFAULT_NAME
Invocation name to use when no name is needed, such as the name of a constructor, or the invocation name of a dynamic constant or dynamic callsite when the bootstrap is known to ignore the invocation name.- See Also:
- Constant Field Values
-
CD_Object
-
CD_String
-
CD_Class
-
CD_Number
-
CD_Integer
-
CD_Long
-
CD_Float
-
CD_Double
-
CD_Short
-
CD_Byte
-
CD_Character
-
CD_Boolean
-
CD_Void
-
CD_Throwable
-
CD_Exception
-
CD_Enum
-
CD_VarHandle
-
CD_MethodHandles
ClassDesc
representingMethodHandles
-
CD_MethodHandles_Lookup
ClassDesc
representingMethodHandles.Lookup
-
CD_MethodHandle
ClassDesc
representingMethodHandle
-
CD_MethodType
ClassDesc
representingMethodType
-
CD_CallSite
-
CD_Collection
ClassDesc
representingCollection
-
CD_List
-
CD_Set
-
CD_Map
-
CD_ConstantDesc
ClassDesc
representingConstantDesc
-
CD_ClassDesc
-
CD_EnumDesc
ClassDesc
representingEnum.EnumDesc
-
CD_MethodTypeDesc
ClassDesc
representingMethodTypeDesc
-
CD_MethodHandleDesc
ClassDesc
representingMethodHandleDesc
-
CD_DirectMethodHandleDesc
ClassDesc
representingDirectMethodHandleDesc
-
CD_VarHandleDesc
ClassDesc
representingVarHandle.VarHandleDesc
-
CD_MethodHandleDesc_Kind
ClassDesc
representingDirectMethodHandleDesc.Kind
-
CD_DynamicConstantDesc
ClassDesc
representingDynamicConstantDesc
-
CD_DynamicCallSiteDesc
ClassDesc
representingDynamicCallSiteDesc
-
CD_ConstantBootstraps
ClassDesc
representingConstantBootstraps
-
BSM_PRIMITIVE_CLASS
MethodHandleDesc
representingConstantBootstraps.primitiveClass
-
BSM_ENUM_CONSTANT
MethodHandleDesc
representingConstantBootstraps.enumConstant
-
BSM_NULL_CONSTANT
MethodHandleDesc
representingConstantBootstraps.nullConstant
-
BSM_VARHANDLE_FIELD
MethodHandleDesc
representingConstantBootstraps.fieldVarHandle
-
BSM_VARHANDLE_STATIC_FIELD
MethodHandleDesc
representingConstantBootstraps.staticVarHandle
-
BSM_VARHANDLE_ARRAY
MethodHandleDesc
representingConstantBootstraps.arrayVarHandle
-
BSM_INVOKE
MethodHandleDesc
representingConstantBootstraps.invoke
-
CD_int
ClassDesc
representing the primitive typeint
-
CD_long
ClassDesc
representing the primitive typelong
-
CD_float
ClassDesc
representing the primitive typefloat
-
CD_double
ClassDesc
representing the primitive typedouble
-
CD_short
ClassDesc
representing the primitive typeshort
-
CD_byte
ClassDesc
representing the primitive typebyte
-
CD_char
ClassDesc
representing the primitive typechar
-
CD_boolean
ClassDesc
representing the primitive typeboolean
-
CD_void
ClassDesc
representing the primitive typevoid
-
NULL
Nominal descriptor representing the constantnull
-
-
Method Details
-
ofCallsiteBootstrap
public static DirectMethodHandleDesc ofCallsiteBootstrap(ClassDesc owner, String name, ClassDesc returnType, ClassDesc... paramTypes)Returns aMethodHandleDesc
corresponding to a bootstrap method for aninvokedynamic
callsite, which is a static method whose leading parameter types areLookup
,String
, andMethodType
.- Parameters:
owner
- the class declaring the methodname
- the unqualified name of the methodreturnType
- the return type of the methodparamTypes
- the types of the static bootstrap arguments, if any- Returns:
- the
MethodHandleDesc
- Throws:
NullPointerException
- if any of the arguments are null- See Java Virtual Machine Specification:
-
4.2.2 Unqualified Names
-
ofConstantBootstrap
public static DirectMethodHandleDesc ofConstantBootstrap(ClassDesc owner, String name, ClassDesc returnType, ClassDesc... paramTypes)Returns aMethodHandleDesc
corresponding to a bootstrap method for a dynamic constant, which is a static method whose leading arguments areLookup
,String
, andClass
.- Parameters:
owner
- the class declaring the methodname
- the unqualified name of the methodreturnType
- the return type of the methodparamTypes
- the types of the static bootstrap arguments, if any- Returns:
- the
MethodHandleDesc
- Throws:
NullPointerException
- if any of the arguments are null- See Java Virtual Machine Specification:
-
4.2.2 Unqualified Names
-