public enum TestDisplayOrder extends java.lang.Enum<TestDisplayOrder>
Enum Constant and Description |
---|
NEWEST_FIRST
The last executed test appears at the top of the report
|
OLDEST_FIRST
The 1st executed test appears at the top of the report
|
Modifier and Type | Method and Description |
---|---|
static TestDisplayOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestDisplayOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestDisplayOrder OLDEST_FIRST
public static final TestDisplayOrder NEWEST_FIRST
public static TestDisplayOrder[] values()
for (TestDisplayOrder c : TestDisplayOrder.values()) System.out.println(c);
public static TestDisplayOrder 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