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

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

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

/**
 * "postings_format" field in mapping
 *
 * @see Postings format
 */
public enum PostingsFormatEnum {
    /**
     * Use default value in ElasticSearch
     */
    NA,

    /**
     * Set "postings_format" to "direct"
     */
    DIRECT,

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

    /**
     * Set "postings_format" to "pulsing"
     */
    PULSING,

    /**
     * Set "postings_format" to "bloom_default"
     */
    BLOOM_DEFAULT,

    /**
     * Set "postings_format" to "bloom_pulsing"
     */
    BLOOM_PULSING,

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy