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 Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum 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 Summary
Modifier and TypeMethodDescriptionstatic MapperService.MergeReason
Returns 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_PREFLIGHT
Pre-flight check before sending a mapping update to the master -
MAPPING_UPDATE
Create or update a mapping. -
INDEX_TEMPLATE
Merge mappings from a composable index template. -
MAPPING_RECOVERY
Recovery 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
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-