public enum TestCaseResultStatus extends Enum<TestCaseResultStatus>
| Enum Constant and Description |
|---|
Error |
Fail |
Running |
Success |
Timeout |
| Modifier and Type | Method and Description |
|---|---|
String |
getUri() |
static TestCaseResultStatus |
resolve(long value) |
static TestCaseResultStatus |
resolve(String value)
Resolves a full URI/IRI to an enum
|
String |
toString() |
static TestCaseResultStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCaseResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseResultStatus Success
public static final TestCaseResultStatus Fail
public static final TestCaseResultStatus Timeout
public static final TestCaseResultStatus Error
public static final TestCaseResultStatus Running
public static TestCaseResultStatus[] values()
for (TestCaseResultStatus c : TestCaseResultStatus.values()) System.out.println(c);
public static TestCaseResultStatus 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 getUri()
public String toString()
toString in class Enum<TestCaseResultStatus>public static TestCaseResultStatus resolve(String value)
value - the URI/IRI we want to resolvepublic static TestCaseResultStatus resolve(long value)
Copyright © 2014. All rights reserved.