public enum Datatype extends Enum<Datatype>
| Enum Constant and Description |
|---|
CODE |
DATE |
LOCATION |
LONG_TEXT |
NUMERIC |
OBJECT |
TEXT |
TEXT_FINGERPRINT |
UNANALYZED_TEXT |
| 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 TEXT
public static final Datatype LONG_TEXT
public static final Datatype UNANALYZED_TEXT
public static final Datatype CODE
public static final Datatype NUMERIC
public static final Datatype DATE
public static final Datatype LOCATION
public static final Datatype OBJECT
public static final Datatype TEXT_FINGERPRINT
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 © 2025. All rights reserved.