public enum PrimaryKeyType extends Enum<PrimaryKeyType>
| Enum Constant and Description |
|---|
BINARY
二进制数据。
|
INTEGER
64位整数。
|
STRING
字符串。
|
| Modifier and Type | Method and Description |
|---|---|
static PrimaryKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimaryKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimaryKeyType STRING
public static final PrimaryKeyType INTEGER
public static final PrimaryKeyType BINARY
public static PrimaryKeyType[] values()
for (PrimaryKeyType c : PrimaryKeyType.values()) System.out.println(c);
public static PrimaryKeyType 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 nullCopyright © 2024. All Rights Reserved.