public enum EntityFieldType extends Enum<EntityFieldType>
Sources
| Enum Constant and Description |
|---|
ARRAY
Array type.
|
BINARY
Binary type.
|
BOOLEAN
Boolean type.
|
DATE
Date type.
|
DOUBLE
Double type.
|
FLOAT
Float type.
|
INTEGER
Integer type.
|
LONG
Long type.
|
STRING
String type.
|
| Modifier and Type | Method and Description |
|---|---|
static EntityFieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityFieldType STRING
public static final EntityFieldType INTEGER
public static final EntityFieldType LONG
public static final EntityFieldType FLOAT
public static final EntityFieldType DOUBLE
public static final EntityFieldType BOOLEAN
public static final EntityFieldType DATE
public static final EntityFieldType BINARY
public static final EntityFieldType ARRAY
public static EntityFieldType[] values()
for (EntityFieldType c : EntityFieldType.values()) System.out.println(c);
public static EntityFieldType 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 (c) 2014-2021 All Rights Reserved by the RWS Group for and on behalf of its affiliates and subsidiaries