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