
com.github.kzwang.osem.annotations.FieldDataFormat 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;
/**
* Field Data Format
*
* @see Field Data Format
*/
public enum FieldDataFormat {
/**
* Use default value in ElasticSearch
*/
NA,
/**
* set format to "paged_bytes", only available for string
*/
PAGED_BYTES,
/**
* set format to "fst", only available for string
*/
FST,
/**
* set format to "doc_values"
*/
DOC_VALUES,
/**
* set format to "array"
*/
ARRAY,
/**
* set format to "disabled"
*/
DISABLED,
/**
* set format to "compressed", only available for geo_point
*/
COMPRESSED,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy