Module openj9.dtfj
Enum IClassWalkCallbacks.SlotType
- java.lang.Object
-
- java.lang.Enum<IClassWalkCallbacks.SlotType>
-
- com.ibm.j9ddr.vm29.tools.ddrinteractive.IClassWalkCallbacks.SlotType
-
- All Implemented Interfaces:
Serializable,Comparable<IClassWalkCallbacks.SlotType>
- Enclosing interface:
- IClassWalkCallbacks
public static enum IClassWalkCallbacks.SlotType extends Enum<IClassWalkCallbacks.SlotType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description J9_I16J9_I32J9_I64J9_I8J9_IDATAJ9_IntermediateClassDataJ9_iTableMethodJ9_NASJ9_PaddingJ9_RAM_UTF8J9_ROM_UTF8J9_SECTION_ENDJ9_SECTION_STARTJ9_SRPJ9_SRP_TO_STRINGJ9_SRPNASJ9_U16J9_U32J9_U64J9_U8J9_UDATAJ9_UTF8J9_WSRP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetSize()static IClassWalkCallbacks.SlotTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IClassWalkCallbacks.SlotType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
J9_U8
public static final IClassWalkCallbacks.SlotType J9_U8
-
J9_I8
public static final IClassWalkCallbacks.SlotType J9_I8
-
J9_I16
public static final IClassWalkCallbacks.SlotType J9_I16
-
J9_U16
public static final IClassWalkCallbacks.SlotType J9_U16
-
J9_U32
public static final IClassWalkCallbacks.SlotType J9_U32
-
J9_I32
public static final IClassWalkCallbacks.SlotType J9_I32
-
J9_U64
public static final IClassWalkCallbacks.SlotType J9_U64
-
J9_I64
public static final IClassWalkCallbacks.SlotType J9_I64
-
J9_RAM_UTF8
public static final IClassWalkCallbacks.SlotType J9_RAM_UTF8
-
J9_ROM_UTF8
public static final IClassWalkCallbacks.SlotType J9_ROM_UTF8
-
J9_UTF8
public static final IClassWalkCallbacks.SlotType J9_UTF8
-
J9_NAS
public static final IClassWalkCallbacks.SlotType J9_NAS
-
J9_SRPNAS
public static final IClassWalkCallbacks.SlotType J9_SRPNAS
-
J9_UDATA
public static final IClassWalkCallbacks.SlotType J9_UDATA
-
J9_IDATA
public static final IClassWalkCallbacks.SlotType J9_IDATA
-
J9_SRP
public static final IClassWalkCallbacks.SlotType J9_SRP
-
J9_SRP_TO_STRING
public static final IClassWalkCallbacks.SlotType J9_SRP_TO_STRING
-
J9_WSRP
public static final IClassWalkCallbacks.SlotType J9_WSRP
-
J9_iTableMethod
public static final IClassWalkCallbacks.SlotType J9_iTableMethod
-
J9_IntermediateClassData
public static final IClassWalkCallbacks.SlotType J9_IntermediateClassData
-
J9_SECTION_START
public static final IClassWalkCallbacks.SlotType J9_SECTION_START
-
J9_SECTION_END
public static final IClassWalkCallbacks.SlotType J9_SECTION_END
-
J9_Padding
public static final IClassWalkCallbacks.SlotType J9_Padding
-
-
Method Detail
-
values
public static IClassWalkCallbacks.SlotType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IClassWalkCallbacks.SlotType c : IClassWalkCallbacks.SlotType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IClassWalkCallbacks.SlotType 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
-
getSize
public int getSize()
-
-