protected static enum RuntimeTask.State extends Enum<RuntimeTask.State>
| Modifier and Type | Method and Description |
|---|---|
static RuntimeTask.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeTask.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeTask.State NEW
public static final RuntimeTask.State INITED
public static final RuntimeTask.State RUNNING
public static final RuntimeTask.State CLOSED
public static RuntimeTask.State[] values()
for (RuntimeTask.State c : RuntimeTask.State.values()) System.out.println(c);
public static RuntimeTask.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 © 2015 Apache Software Foundation. All rights reserved.