private static enum MonitorDeoptTest.State extends Enum<MonitorDeoptTest.State>
Enum Constant and Description |
---|
INITIAL |
INVALIDATED |
RUNNING_GRAAL |
RUNNING_INTERPRETER |
TERMINATED |
Modifier and Type | Method and Description |
---|---|
static MonitorDeoptTest.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MonitorDeoptTest.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonitorDeoptTest.State INITIAL
public static final MonitorDeoptTest.State RUNNING_GRAAL
public static final MonitorDeoptTest.State INVALIDATED
public static final MonitorDeoptTest.State RUNNING_INTERPRETER
public static final MonitorDeoptTest.State TERMINATED
public static MonitorDeoptTest.State[] values()
for (MonitorDeoptTest.State c : MonitorDeoptTest.State.values()) System.out.println(c);
public static MonitorDeoptTest.State 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 null