Module org.elasticsearch.server
Package org.elasticsearch.index.mapper
Enum Class MapperService.MergeReason
- All Implemented Interfaces:
- Serializable,- Comparable<MapperService.MergeReason>,- Constable
- Enclosing class:
- MapperService
The reason why a mapping is being merged.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionMerge mappings from a composable index template.Recovery of an existing mapping, for instance because of a restart, if a shard was moved to a different node or for administrative purposes.Create or update a mapping.Pre-flight check before sending a mapping update to the master
- 
Method SummaryModifier and TypeMethodDescriptionstatic MapperService.MergeReasonReturns the enum constant of this class with the specified name.static MapperService.MergeReason[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
MAPPING_UPDATE_PREFLIGHTPre-flight check before sending a mapping update to the master
- 
MAPPING_UPDATECreate or update a mapping.
- 
INDEX_TEMPLATEMerge mappings from a composable index template.
- 
MAPPING_RECOVERYRecovery of an existing mapping, for instance because of a restart, if a shard was moved to a different node or for administrative purposes.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-