public enum TestOutcome extends Enum<TestOutcome> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
ABORTED |
BLOCKED |
ERROR |
FAILED |
IN_PROGRESS |
INCONCLUSIVE |
NONE |
NOT_APPLICABLE |
NOT_EXECUTED |
NOT_IMPACTED |
PASSED |
PAUSED |
TIMEOUT |
UNSPECIFIED |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static TestOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestOutcome UNSPECIFIED
public static final TestOutcome NONE
public static final TestOutcome PASSED
public static final TestOutcome FAILED
public static final TestOutcome INCONCLUSIVE
public static final TestOutcome TIMEOUT
public static final TestOutcome ABORTED
public static final TestOutcome BLOCKED
public static final TestOutcome NOT_EXECUTED
public static final TestOutcome WARNING
public static final TestOutcome ERROR
public static final TestOutcome NOT_APPLICABLE
public static final TestOutcome PAUSED
public static final TestOutcome IN_PROGRESS
public static final TestOutcome NOT_IMPACTED
public static TestOutcome[] values()
for (TestOutcome c : TestOutcome.values()) System.out.println(c);
public static TestOutcome 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 enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2021. All rights reserved.