public enum ExecutionProgression extends java.lang.Enum<ExecutionProgression>
Enum Constant and Description |
---|
EXECUTING_ADQL |
FINISHED |
PARSING |
PENDING |
UPLOADING |
WRITING_RESULT |
Modifier and Type | Method and Description |
---|---|
static ExecutionProgression |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionProgression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionProgression PENDING
public static final ExecutionProgression UPLOADING
public static final ExecutionProgression PARSING
public static final ExecutionProgression EXECUTING_ADQL
public static final ExecutionProgression WRITING_RESULT
public static final ExecutionProgression FINISHED
public static ExecutionProgression[] values()
for (ExecutionProgression c : ExecutionProgression.values()) System.out.println(c);
public static ExecutionProgression valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null