com.github.kzwang.osem.annotations.DynamicEnum 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;
/**
* @see Dynamic
*/
public enum DynamicEnum {
/**
* Use default value in ElasticSearch
*/
NA,
/**
* Enable dynamic feature
*/
TRUE,
/**
* Disable dynamic feature
*/
FALSE,
/**
* Not only new fields will not be introduced into the mapping, parsing (indexing) docs with such new fields will fail
*/
STRICT
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy