Enum Class AggregatorMode

java.lang.Object
java.lang.Enum<AggregatorMode>
org.elasticsearch.compute.aggregation.AggregatorMode
All Implemented Interfaces:
Serializable, Comparable<AggregatorMode>, Constable

public enum AggregatorMode extends Enum<AggregatorMode>
  • Enum Constant Details

    • INITIAL

      public static final AggregatorMode INITIAL
      Maps raw inputs to intermediate outputs.
    • INTERMEDIATE

      public static final AggregatorMode INTERMEDIATE
      Maps intermediate inputs to intermediate outputs.
    • FINAL

      public static final AggregatorMode FINAL
      Maps intermediate inputs to final outputs.
    • SINGLE

      public static final AggregatorMode SINGLE
      Maps raw inputs to final outputs. Most useful for testing.
  • Method Details

    • values

      public static AggregatorMode[] 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 AggregatorMode 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
    • isInputPartial

      public boolean isInputPartial()
    • isOutputPartial

      public boolean isOutputPartial()