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