Enum Class MapperService.MergeReason

java.lang.Object
java.lang.Enum<MapperService.MergeReason>
org.elasticsearch.index.mapper.MapperService.MergeReason
All Implemented Interfaces:
Serializable, Comparable<MapperService.MergeReason>, Constable
Enclosing class:
MapperService

public static enum MapperService.MergeReason extends Enum<MapperService.MergeReason>
The reason why a mapping is being merged.
  • Enum Constant Details

    • MAPPING_UPDATE_PREFLIGHT

      public static final MapperService.MergeReason MAPPING_UPDATE_PREFLIGHT
      Pre-flight check before sending a mapping update to the master
    • MAPPING_UPDATE

      public static final MapperService.MergeReason MAPPING_UPDATE
      Create or update a mapping.
    • INDEX_TEMPLATE

      public static final MapperService.MergeReason INDEX_TEMPLATE
      Merge mappings from a composable index template.
    • MAPPING_RECOVERY

      public static final MapperService.MergeReason 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

      public static MapperService.MergeReason[] 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

      public static MapperService.MergeReason valueOf(String name)
      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 name
      NullPointerException - if the argument is null