public enum EnumDataType extends Enum<EnumDataType>
| Enum Constant and Description |
|---|
BOOLEAN
A boolean.
|
CATALOG
Contains a catalogue.
|
DATE
A date.
|
DATETIME
A date and time.
|
FLOAT
A float.
|
INTEGER
An integer.
|
STRING
A string.
|
TIME
A time.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumDataType DATE
public static final EnumDataType DATETIME
public static final EnumDataType TIME
public static final EnumDataType INTEGER
public static final EnumDataType FLOAT
public static final EnumDataType STRING
public static final EnumDataType BOOLEAN
public static final EnumDataType CATALOG
public static EnumDataType[] values()
for (EnumDataType c : EnumDataType.values()) System.out.println(c);
public static EnumDataType 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 © 2022 Samply Community. All rights reserved.