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