public enum TestStatus extends Enum<TestStatus>
Enum Constant and Description |
---|
ERROR |
FAILURE |
IGNORED |
IGNORED_ASSUMPTION |
OK |
Modifier and Type | Method and Description |
---|---|
static TestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestStatus OK
public static final TestStatus IGNORED
public static final TestStatus IGNORED_ASSUMPTION
public static final TestStatus FAILURE
public static final TestStatus ERROR
public static TestStatus[] values()
for (TestStatus c : TestStatus.values()) System.out.println(c);
public static TestStatus 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 © 2011–2015 Carrot Search s.c.. All rights reserved.