public enum DefinedColumnType extends Enum<DefinedColumnType>
| Enum Constant and Description |
|---|
BINARY
BINARY。
|
BOOLEAN
布尔值。
|
DOUBLE
浮点数。
|
INTEGER
64位整数。
|
STRING
字符串。
|
| Modifier and Type | Method and Description |
|---|---|
static DefinedColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefinedColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefinedColumnType INTEGER
public static final DefinedColumnType DOUBLE
public static final DefinedColumnType BOOLEAN
public static final DefinedColumnType STRING
public static final DefinedColumnType BINARY
public static DefinedColumnType[] values()
for (DefinedColumnType c : DefinedColumnType.values()) System.out.println(c);
public static DefinedColumnType 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.