public static enum PartitionDTO.Type extends java.lang.Enum<PartitionDTO.Type>
| Enum Constant and Description |
|---|
IDENTITY
The identity partition type.
|
LIST
The list partition type.
|
RANGE
The range partition type.
|
| Modifier and Type | Method and Description |
|---|---|
static PartitionDTO.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PartitionDTO.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PartitionDTO.Type RANGE
public static final PartitionDTO.Type LIST
public static final PartitionDTO.Type IDENTITY
public static PartitionDTO.Type[] values()
for (PartitionDTO.Type c : PartitionDTO.Type.values()) System.out.println(c);
public static PartitionDTO.Type 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