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

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

package com.github.kzwang.osem.annotations;


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

    /**
     * Set "term_vector" to "no"
     */
    NO,

    /**
     * Set "term_vector" to "yes"
     */
    YES,

    /**
     * Set "term_vector" to "with_offsets"
     */
    WITH_OFFSETS,

    /**
     * Set "term_vector" to "with_positions"
     */
    WITH_POSITIONS,

    /**
     * Set "term_vector" to "with_positions_offsets"
     */
    WITH_POSITIONS_OFFSETS
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy