FieldType specifies the field data type in search indexes.
Enumeration value list
-
LONG specifies long integers.
-
DOUBLE specifies floating-point numbers.
-
BOOLEAN specifies Boolean values.
-
KEYWORD specifies strings that cannot be tokenized.
-
TEXT specifies strings that can be tokenized.
-
NESTED specifies the Nested type.
-
GEO_POINT specifies the geographical location type.
-
DATE specifies the Date type.
-
VECTOR specifies the Vector type.
-
FUZZY_KEYWORD specifies strings that support fuzzy query.
-
IP specifies an IP address.
-
JSON specifies a JSON object.
enum FieldType {
LONG = 1;
DOUBLE = 2;
BOOLEAN = 3;
KEYWORD = 4;
TEXT = 5;
NESTED = 6;
GEO_POINT = 7;
DATE = 8;
VECTOR = 9;
FUZZY_KEYWORD = 10;
IP = 11;
JSON = 12;
}