public enum TestItemType extends Enum<TestItemType>
| Enum Constant and Description |
|---|
AFTER_CLASS |
AFTER_GROUPS |
AFTER_METHOD |
AFTER_SUITE |
AFTER_TEST |
BEFORE_CLASS |
BEFORE_GROUPS |
BEFORE_METHOD |
BEFORE_SUITE |
BEFORE_TEST |
STEP |
SUITE |
TEST |
| Modifier and Type | Method and Description |
|---|---|
static TestItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestItemType SUITE
public static final TestItemType TEST
public static final TestItemType STEP
public static final TestItemType BEFORE_CLASS
public static final TestItemType BEFORE_GROUPS
public static final TestItemType BEFORE_METHOD
public static final TestItemType BEFORE_SUITE
public static final TestItemType BEFORE_TEST
public static final TestItemType AFTER_CLASS
public static final TestItemType AFTER_GROUPS
public static final TestItemType AFTER_METHOD
public static final TestItemType AFTER_SUITE
public static final TestItemType AFTER_TEST
public static TestItemType[] values()
for (TestItemType c : TestItemType.values()) System.out.println(c);
public static TestItemType 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 © 2021. All rights reserved.