@Generated public enum ScalarDataType extends Enum<ScalarDataType>
| Enum Constant and Description |
|---|
BINARY |
BOOLEAN |
DATE |
DECIMAL |
DOUBLE |
FLOAT |
INTEGER |
LONG |
SHORT |
STRING |
TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
static ScalarDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScalarDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScalarDataType BINARY
public static final ScalarDataType BOOLEAN
public static final ScalarDataType DATE
public static final ScalarDataType DECIMAL
public static final ScalarDataType DOUBLE
public static final ScalarDataType FLOAT
public static final ScalarDataType INTEGER
public static final ScalarDataType LONG
public static final ScalarDataType SHORT
public static final ScalarDataType STRING
public static final ScalarDataType TIMESTAMP
public static ScalarDataType[] values()
for (ScalarDataType c : ScalarDataType.values()) System.out.println(c);
public static ScalarDataType 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 © 2026. All rights reserved.