public static enum OpcodeTables.OpcodeType extends java.lang.Enum<OpcodeTables.OpcodeType>
Enum Constant and Description |
---|
NONPRIVELEGED |
NORMAL |
PRIVELEGED |
WIDE |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
printval |
private java.lang.Integer |
value |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
printval() |
static OpcodeTables.OpcodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpcodeTables.OpcodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpcodeTables.OpcodeType NORMAL
public static final OpcodeTables.OpcodeType NONPRIVELEGED
public static final OpcodeTables.OpcodeType PRIVELEGED
public static final OpcodeTables.OpcodeType WIDE
private final java.lang.Integer value
private final java.lang.String printval
public static OpcodeTables.OpcodeType[] values()
for (OpcodeTables.OpcodeType c : OpcodeTables.OpcodeType.values()) System.out.println(c);
public static OpcodeTables.OpcodeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String printval()