public static enum TestObject.testState extends Enum<TestObject.testState>
| Enum Constant and Description |
|---|
apiTestMethod |
beforeSuite |
defaultState |
parent |
suite |
testClass |
testMethod |
| Modifier and Type | Method and Description |
|---|---|
static TestObject.testState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestObject.testState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestObject.testState parent
public static final TestObject.testState beforeSuite
public static final TestObject.testState suite
public static final TestObject.testState testClass
public static final TestObject.testState testMethod
public static final TestObject.testState apiTestMethod
public static final TestObject.testState defaultState
public static TestObject.testState[] values()
for (TestObject.testState c : TestObject.testState.values()) System.out.println(c);
public static TestObject.testState 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.