public enum OpcodeType extends Enum<OpcodeType>
| Enum Constant and Description |
|---|
INVERSE |
NOTIFY |
STANDARD |
STATUS |
UNASSIGNED |
UNASSIGNED_3 |
UPPDATE |
| Modifier and Type | Method and Description |
|---|---|
static OpcodeType |
fromString(String name) |
static OpcodeType |
fromValue(int value) |
int |
getValue() |
static OpcodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpcodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpcodeType STANDARD
public static final OpcodeType INVERSE
public static final OpcodeType STATUS
public static final OpcodeType UNASSIGNED_3
public static final OpcodeType NOTIFY
public static final OpcodeType UPPDATE
public static final OpcodeType UNASSIGNED
public static OpcodeType[] values()
for (OpcodeType c : OpcodeType.values()) System.out.println(c);
public static OpcodeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static OpcodeType fromString(String name)
public static OpcodeType fromValue(int value)
public int getValue()
Copyright © 2020. All rights reserved.