public enum LogicalDataType extends Enum<LogicalDataType> implements IAEnum
| Enum Constant and Description |
|---|
ANY |
DATE |
NUMERIC |
STRING |
TIME |
TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static LogicalDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalDataType NUMERIC
public static final LogicalDataType STRING
public static final LogicalDataType DATE
public static final LogicalDataType TIME
public static final LogicalDataType TIMESTAMP
public static final LogicalDataType ANY
public static LogicalDataType[] values()
for (LogicalDataType c : LogicalDataType.values()) System.out.println(c);
public static LogicalDataType 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 © 2018–2020 ODPi. All rights reserved.