public enum SuiteType extends Enum<SuiteType>
| Enum Constant and Description |
|---|
JUNIT38_TEST_CLASSES |
RUN_WITH_CLASSES |
TEST_CLASSES |
| Modifier and Type | Method and Description |
|---|---|
static SuiteType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SuiteType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuiteType TEST_CLASSES
public static final SuiteType RUN_WITH_CLASSES
public static final SuiteType JUNIT38_TEST_CLASSES
public static SuiteType[] values()
for (SuiteType c : SuiteType.values()) System.out.println(c);
public static SuiteType 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 © 2015. All Rights Reserved.