public enum BlobStoreTaskState extends java.lang.Enum<BlobStoreTaskState>
| Enum Constant and Description |
|---|
COMPLETED |
IN_PROGRESS |
NOT_READY |
PENDING_EXECUTION |
READY |
| Modifier and Type | Method and Description |
|---|---|
static BlobStoreTaskState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlobStoreTaskState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlobStoreTaskState NOT_READY
public static final BlobStoreTaskState READY
public static final BlobStoreTaskState PENDING_EXECUTION
public static final BlobStoreTaskState IN_PROGRESS
public static final BlobStoreTaskState COMPLETED
public static BlobStoreTaskState[] values()
for (BlobStoreTaskState c : BlobStoreTaskState.values()) System.out.println(c);
public static BlobStoreTaskState 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