public static enum Execution.State extends Enum<Execution.State>
Enum Constant and Description |
---|
CANCELED |
DONE |
ERROR |
FRESH
Identifies the state in which an execution is before it has
started resolving the query.
|
RUNNING |
TIMEOUT |
Modifier and Type | Method and Description |
---|---|
static Execution.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Execution.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Execution.State FRESH
public static final Execution.State RUNNING
public static final Execution.State ERROR
public static final Execution.State CANCELED
public static final Execution.State TIMEOUT
public static final Execution.State DONE
public static Execution.State[] values()
for (Execution.State c : Execution.State.values()) System.out.println(c);
public static Execution.State 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 © 2020 Hitachi Vantara. All rights reserved.