public enum DataTypeDescriptor extends Enum<DataTypeDescriptor>
| Enum Constant and Description |
|---|
BOOLEAN |
INTEGER |
LOCAL_DATE_TIME |
NUMBER |
STRING |
ZONED_DATE_TIME |
| Modifier and Type | Method and Description |
|---|---|
static DataTypeDescriptor |
forName(String name) |
String |
getName() |
static DataTypeDescriptor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataTypeDescriptor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataTypeDescriptor STRING
public static final DataTypeDescriptor INTEGER
public static final DataTypeDescriptor NUMBER
public static final DataTypeDescriptor ZONED_DATE_TIME
public static final DataTypeDescriptor LOCAL_DATE_TIME
public static final DataTypeDescriptor BOOLEAN
public static DataTypeDescriptor[] values()
for (DataTypeDescriptor c : DataTypeDescriptor.values()) System.out.println(c);
public static DataTypeDescriptor 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 nullpublic String getName()
public static DataTypeDescriptor forName(String name)
Copyright © 2020. All rights reserved.