All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kzwang.osem.annotations.FieldDataFormat Maven / Gradle / Ivy

The newest version!
package com.github.kzwang.osem.annotations;

/**
 * Field Data Format
 *
 * @see Field Data Format
 */
public enum FieldDataFormat {
    /**
     * Use default value in ElasticSearch
     */
    NA,

    /**
     * set format to "paged_bytes", only available for string
     */
    PAGED_BYTES,

    /**
     * set format to "fst", only available for string
     */
    FST,

    /**
     * set format to "doc_values"
     */
    DOC_VALUES,

    /**
     * set format to "array"
     */
    ARRAY,

    /**
     * set format to "disabled"
     */
    DISABLED,

    /**
     * set format to "compressed", only available for geo_point
     */
    COMPRESSED,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy