public static enum TestState.TestStateType extends Enum<TestState.TestStateType>
| Enum Constant and Description |
|---|
STATE_FAILED
The failed state.
|
STATE_INITIALIZED
The initialized state.
|
STATE_SKIPPED
The skipped state.
|
STATE_SUCCEEDED
The succeeded state.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toHumanString() |
static TestState.TestStateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestState.TestStateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestState.TestStateType STATE_INITIALIZED
public static final TestState.TestStateType STATE_SUCCEEDED
public static final TestState.TestStateType STATE_SKIPPED
public static final TestState.TestStateType STATE_FAILED
public static TestState.TestStateType[] values()
for (TestState.TestStateType c : TestState.TestStateType.values()) System.out.println(c);
public static TestState.TestStateType 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 String toHumanString()
Copyright © 2015 <code@io7m.com> http://io7m.com