
com.github.kzwang.osem.annotations.PostingsFormatEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-osem Show documentation
Show all versions of elasticsearch-osem Show documentation
Object/Search Engine Mapping for ElasticSearch
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