private static enum FWDTestEngine.State extends java.lang.Enum<FWDTestEngine.State>
| Enum Constant and Description |
|---|
INITIALIZED
Engine was initialized successfully.
|
INOPERABLE
Engine initialization failed, engine is inoperable
Inoperable engines will never discover any tests.
|
NONE
Engine just created and is uninitialized.
|
| Modifier and Type | Method and Description |
|---|---|
static FWDTestEngine.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FWDTestEngine.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FWDTestEngine.State INITIALIZED
public static final FWDTestEngine.State INOPERABLE
public static final FWDTestEngine.State NONE
public static FWDTestEngine.State[] values()
for (FWDTestEngine.State c : FWDTestEngine.State.values()) System.out.println(c);
public static FWDTestEngine.State 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 null