public static enum CloudTileTaskVisitor.TaskState extends java.lang.Enum<CloudTileTaskVisitor.TaskState>
Enum Constant and Description |
---|
ABANDONED
The task is discarded
|
COMPLETED
The task has been completed
|
READY
Ready
|
RUNNING
The task is in progress
|
Modifier and Type | Method and Description |
---|---|
int |
value() |
static CloudTileTaskVisitor.TaskState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudTileTaskVisitor.TaskState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final CloudTileTaskVisitor.TaskState READY
public static final CloudTileTaskVisitor.TaskState RUNNING
public static final CloudTileTaskVisitor.TaskState COMPLETED
public static final CloudTileTaskVisitor.TaskState ABANDONED
public static CloudTileTaskVisitor.TaskState[] values()
for (CloudTileTaskVisitor.TaskState c : CloudTileTaskVisitor.TaskState.values()) System.out.println(c);
public static CloudTileTaskVisitor.TaskState 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 nullpublic int value()