public enum BlockListType extends Enum<BlockListType>
| Enum Constant and Description |
|---|
ALL
Enum value all.
|
COMMITTED
Enum value committed.
|
UNCOMMITTED
Enum value uncommitted.
|
| Modifier and Type | Method and Description |
|---|---|
static BlockListType |
fromString(String value)
Parses a serialized value to a BlockListType instance.
|
String |
toString() |
static BlockListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockListType COMMITTED
public static final BlockListType UNCOMMITTED
public static final BlockListType ALL
public static BlockListType[] values()
for (BlockListType c : BlockListType.values()) System.out.println(c);
public static BlockListType 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 nullpublic static BlockListType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<BlockListType>This documentation was released into the public domain.