public static enum TestCaseParam.Type extends Enum<TestCaseParam.Type>
Enum Constant and Description |
---|
DERIVED
Derived from the cell's test case value.
|
SYSTEM_GENERATED
Auto-generated by the system based on the cell's assertion.
|
USER_ENTERED
Entered manually by the user.
|
Modifier and Type | Method and Description |
---|---|
static TestCaseParam.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCaseParam.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseParam.Type USER_ENTERED
public static final TestCaseParam.Type SYSTEM_GENERATED
public static final TestCaseParam.Type DERIVED
public static TestCaseParam.Type[] values()
for (TestCaseParam.Type c : TestCaseParam.Type.values()) System.out.println(c);
public static TestCaseParam.Type 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 null