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