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

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

package com.github.kzwang.osem.annotations;

/**
 * Format for doc values
 *
 * @see Doc Values Format
 */
public enum DocValuesFormatEnum {
    /**
     * Use default value in ElasticSearch
     */
    NA,

    /**
     * Set "doc_values_format" to "memory"
     */
    MEMORY,

    /**
     * Set "doc_values_format" to "disk"
     */
    DISK,

    /**
     * Set "doc_values_format" to "default"
     */
    DEFAULT
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy