All Products
Search
Document Center

Tablestore:FieldType

Last Updated:Apr 15, 2024

FieldType specifies the field data types 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.

enum FieldType {
    LONG = 1;
    DOUBLE = 2;
    BOOLEAN = 3;
    KEYWORD = 4;
    TEXT = 5;
    NESTED = 6;
    GEO_POINT = 7;
    DATE = 8;
}