public static enum Query.Status extends Enum<Query.Status>
| Enum Constant and Description |
|---|
Completed |
Initialized |
InProgress |
Suspended |
| Modifier and Type | Method and Description |
|---|---|
static Query.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Query.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Query.Status Initialized
public static final Query.Status InProgress
public static final Query.Status Completed
public static final Query.Status Suspended
public static Query.Status[] values()
for (Query.Status c : Query.Status.values()) System.out.println(c);
public static Query.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 null