public enum ShardKeyDataType extends java.lang.Enum<ShardKeyDataType>
| Enum Constant and Description |
|---|
BIGINT |
CHAR |
INTEGER |
SMALLINT |
VARCHAR |
| Modifier and Type | Method and Description |
|---|---|
static ShardKeyDataType |
get(int aValue) |
static ShardKeyDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShardKeyDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShardKeyDataType CHAR
public static final ShardKeyDataType INTEGER
public static final ShardKeyDataType SMALLINT
public static final ShardKeyDataType VARCHAR
public static final ShardKeyDataType BIGINT
public static ShardKeyDataType[] values()
for (ShardKeyDataType c : ShardKeyDataType.values()) System.out.println(c);
public static ShardKeyDataType 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 nullpublic static ShardKeyDataType get(int aValue)