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

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

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


/**
 * "index_options" field in mapping
 *
 * @see Mapping Core Types
 */
public enum IndexOptionsEnum {
    /**
     * Use default value in ElasticSearch
     */
    NA,

    /**
     * Set "index_options" to "docs"
     */
    DOCS,

    /**
     * Set "index_options" to "freqs"
     */
    FREQS,

    /**
     * Set "index_options" to "positions"
     */
    POSITIONS,

    /**
     * Set "index_options" to "offsets"
     */
    OFFSETS
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy