public static enum Engine.State extends Enum<Engine.State>
| Enum Constant and Description |
|---|
INIT_IN_PROGRESS |
INITED |
NOT_INITED |
SHUTDOWN_IN_PROGRESS |
| Modifier and Type | Method and Description |
|---|---|
static Engine.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Engine.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Engine.State NOT_INITED
public static final Engine.State INIT_IN_PROGRESS
public static final Engine.State INITED
public static final Engine.State SHUTDOWN_IN_PROGRESS
public static Engine.State[] values()
for (Engine.State c : Engine.State.values()) System.out.println(c);
public static Engine.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 nullCopyright © 2005–2025 Onix Solutions. All rights reserved.