public enum DataType extends Enum<DataType>
| Enum Constant and Description |
|---|
Boolean |
Byte |
Bytes |
Character |
Date |
DateTime |
Day |
Decimal |
Double |
Duration |
Float |
Int |
Integer |
Long |
Month |
MonthDay |
Object |
Short |
String |
Strings |
Time |
UnsignedInt |
UnsignedLong |
URI |
Year |
YearMonth |
YearMonthDay |
| Modifier and Type | Method and Description |
|---|---|
static DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType Boolean
public static final DataType Byte
public static final DataType Bytes
public static final DataType Character
public static final DataType Date
public static final DataType DateTime
public static final DataType Day
public static final DataType Decimal
public static final DataType Double
public static final DataType Duration
public static final DataType Float
public static final DataType Int
public static final DataType UnsignedInt
public static final DataType Integer
public static final DataType Long
public static final DataType UnsignedLong
public static final DataType Month
public static final DataType MonthDay
public static final DataType Object
public static final DataType Short
public static final DataType String
public static final DataType Strings
public static final DataType Time
public static final DataType URI
public static final DataType Year
public static final DataType YearMonth
public static final DataType YearMonthDay
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType 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.