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