public enum TestCaseStepAction extends Enum<TestCaseStepAction>
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Print value of test case step action.
|
static TestCaseStepAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCaseStepAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseStepAction CREATE
public static final TestCaseStepAction UPDATE
public static final TestCaseStepAction PUSH
public static TestCaseStepAction[] values()
for (TestCaseStepAction c : TestCaseStepAction.values()) System.out.println(c);
public static TestCaseStepAction 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 nullpublic String toString()
toString in class Enum<TestCaseStepAction>Copyright © 2010–2020. All rights reserved.