Enum Class MapperService.MergeReason

<MapperService.MergeReason>
org.elasticsearch.index.mapper.MapperService.MergeReason
All Implemented Interfaces:
, <
Enclosing class:
MapperService

public static enum MapperService.MergeReason extends <MapperService.MergeReason>
The reason why a mapping is being merged.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.

    < extends <>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Merge 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 Type
    Method
    Description
     name)
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.

    , , , , , , , , , ,

    Methods inherited from class java.lang.

    , , , , ,
  • 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  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:
      - if this enum class has no constant with the specified name
      - if the argument is null