public static enum ScanningSuite.Ordering extends Enum<ScanningSuite.Ordering>
Enum Constant and Description |
---|
DEFAULT
Does not sort any of the test classes, instead they are run in order of discovery.
|
NAMED
Sorts test classes by their class name.
|
Modifier and Type | Method and Description |
---|---|
static ScanningSuite.Ordering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanningSuite.Ordering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanningSuite.Ordering DEFAULT
public static final ScanningSuite.Ordering NAMED
public static ScanningSuite.Ordering[] values()
for (ScanningSuite.Ordering c : ScanningSuite.Ordering.values()) System.out.println(c);
public static ScanningSuite.Ordering 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 © 2003–2019 Atlassian. All rights reserved.