public enum FieldDataType extends Enum<FieldDataType>
| Enum Constant and Description |
|---|
BigDecimal |
BigInteger |
Boolean |
ByteArray |
Date |
DateTime |
Double |
Float |
Integer |
List |
Long |
Map |
Short |
String |
Struct |
| Modifier and Type | Method and Description |
|---|---|
static FieldDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldDataType String
public static final FieldDataType Integer
public static final FieldDataType Float
public static final FieldDataType Double
public static final FieldDataType Long
public static final FieldDataType Short
public static final FieldDataType BigInteger
public static final FieldDataType BigDecimal
public static final FieldDataType ByteArray
public static final FieldDataType Boolean
public static final FieldDataType Date
public static final FieldDataType DateTime
public static final FieldDataType Struct
public static final FieldDataType Map
public static final FieldDataType List
public static FieldDataType[] values()
for (FieldDataType c : FieldDataType.values()) System.out.println(c);
public static FieldDataType 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 © 2021–2022 Amazon Web Services. All rights reserved.