public enum ExecHandleState extends Enum<ExecHandleState>
| Enum Constant and Description |
|---|
ABORTED |
FAILED |
INIT |
STARTED |
STARTING |
SUCCEEDED |
| Modifier and Type | Method and Description |
|---|---|
static ExecHandleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecHandleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecHandleState INIT
public static final ExecHandleState STARTING
public static final ExecHandleState STARTED
public static final ExecHandleState ABORTED
public static final ExecHandleState FAILED
public static final ExecHandleState SUCCEEDED
public static ExecHandleState[] values()
for (ExecHandleState c : ExecHandleState.values()) System.out.println(c);
public static ExecHandleState 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 © 2013. All rights reserved