- java.lang.Object
-
- java.lang.Enum<DirectMethodHandleDesc.Kind>
-
- java.lang.constant.DirectMethodHandleDesc.Kind
-
- All Implemented Interfaces:
Serializable
,Comparable<DirectMethodHandleDesc.Kind>
,Constable
- Enclosing interface:
- DirectMethodHandleDesc
public static enum DirectMethodHandleDesc.Kind extends Enum<DirectMethodHandleDesc.Kind>
Kinds of method handles that can be described with DirectMethodHandleDesc.- Since:
- 12
-
-
Nested Class Summary
-
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSTRUCTOR
A method handle for a constructorGETTER
A method handle for a read accessor for an instance fieldINTERFACE_SPECIAL
A method handle for an interface method invoked as withinvokespecial
INTERFACE_STATIC
A method handle for a method invoked as withinvokestatic
INTERFACE_VIRTUAL
A method handle for a method invoked as withinvokeinterface
SETTER
A method handle for a write accessor for an instance fieldSPECIAL
A method handle for a method invoked as withinvokespecial
STATIC
A method handle for a method invoked as withinvokestatic
STATIC_GETTER
A method handle for a read accessor for a static fieldSTATIC_SETTER
A method handle for a write accessor for a static fieldVIRTUAL
A method handle for a method invoked as withinvokevirtual
-
Field Summary
Fields Modifier and Type Field Description boolean
isInterface
Is this an interfaceint
refKind
The correspondingrefKind
value for this kind of method handle, as defined byMethodHandleInfo
-
Method Summary
Modifier and Type Method Description static DirectMethodHandleDesc.Kind
valueOf(int refKind)
Returns the enumeration member with the givenrefKind
field.static DirectMethodHandleDesc.Kind
valueOf(int refKind, boolean isInterface)
Returns the enumeration member with the given therefKind
andisInterface
arguments.static DirectMethodHandleDesc.Kind
valueOf(String name)
Returns the enum constant of this type with the specified name.static DirectMethodHandleDesc.Kind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATIC
public static final DirectMethodHandleDesc.Kind STATIC
A method handle for a method invoked as withinvokestatic
-
INTERFACE_STATIC
public static final DirectMethodHandleDesc.Kind INTERFACE_STATIC
A method handle for a method invoked as withinvokestatic
-
VIRTUAL
public static final DirectMethodHandleDesc.Kind VIRTUAL
A method handle for a method invoked as withinvokevirtual
-
INTERFACE_VIRTUAL
public static final DirectMethodHandleDesc.Kind INTERFACE_VIRTUAL
A method handle for a method invoked as withinvokeinterface
-
SPECIAL
public static final DirectMethodHandleDesc.Kind SPECIAL
A method handle for a method invoked as withinvokespecial
-
INTERFACE_SPECIAL
public static final DirectMethodHandleDesc.Kind INTERFACE_SPECIAL
A method handle for an interface method invoked as withinvokespecial
-
CONSTRUCTOR
public static final DirectMethodHandleDesc.Kind CONSTRUCTOR
A method handle for a constructor
-
GETTER
public static final DirectMethodHandleDesc.Kind GETTER
A method handle for a read accessor for an instance field
-
SETTER
public static final DirectMethodHandleDesc.Kind SETTER
A method handle for a write accessor for an instance field
-
STATIC_GETTER
public static final DirectMethodHandleDesc.Kind STATIC_GETTER
A method handle for a read accessor for a static field
-
STATIC_SETTER
public static final DirectMethodHandleDesc.Kind STATIC_SETTER
A method handle for a write accessor for a static field
-
-
Field Detail
-
refKind
public final int refKind
The correspondingrefKind
value for this kind of method handle, as defined byMethodHandleInfo
-
isInterface
public final boolean isInterface
Is this an interface
-
-
Method Detail
-
values
public static DirectMethodHandleDesc.Kind[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DirectMethodHandleDesc.Kind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
public static DirectMethodHandleDesc.Kind valueOf(int refKind)
Returns the enumeration member with the givenrefKind
field. Behaves as ifvalueOf(refKind, false)
. As a special case, ifrefKind
isREF_invokeInterface
(9) then theisInterface
field will be true.- Parameters:
refKind
- refKind of desired member- Returns:
- the matching enumeration member
- Throws:
IllegalArgumentException
- if there is no such member
-
valueOf
public static DirectMethodHandleDesc.Kind valueOf(int refKind, boolean isInterface)
Returns the enumeration member with the given therefKind
andisInterface
arguments. For most values ofrefKind
there is an exact match regardless of the value ofisInterface
. These are:REF_invokeVirtual
which matches toVIRTUAL
REF_invokeInterface
which matches toINTERFACE_VIRTUAL
REF_newInvokeSpecial
which matches toCONSTRUCTOR
REF_getField
which matches toGETTER
REF_putField
which matches toSETTER
REF_getStatic
which matches toSTATIC_GETTER
REF_putStatic
which matches toSTATIC_SETTER
isInterface
:REF_invokeStatic
which matches toSTATIC
orINTERFACE_STATIC
REF_invokeSpecial
which matches toSPECIAL
orINTERFACE_SPECIAL
- Parameters:
refKind
- refKind of desired memberisInterface
- whether desired member is for interface methods- Returns:
- the matching enumeration member
- Throws:
IllegalArgumentException
- if there is no such member
-
-