public static enum StateIcon.State extends Enum<StateIcon.State>
Enum Constant and Description |
---|
FAIL
Indicates a failed test.
|
IGNORED
Indicates an ignored test.
|
NEEDS_TESTING
Indicates that a test needs to be performed.
|
PASS
Indicates a successful test.
|
UNUSED
Indicates that testing is not expected.
|
Modifier and Type | Method and Description |
---|---|
static StateIcon.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateIcon.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateIcon.State FAIL
public static final StateIcon.State PASS
public static final StateIcon.State IGNORED
public static final StateIcon.State NEEDS_TESTING
public static final StateIcon.State UNUSED
public static StateIcon.State[] values()
for (StateIcon.State c : StateIcon.State.values()) System.out.println(c);
public static StateIcon.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