Enum Class Block.MvOrdering

java.lang.Object
java.lang.Enum<Block.MvOrdering>
org.elasticsearch.compute.data.Block.MvOrdering
All Implemented Interfaces:
Serializable, Comparable<Block.MvOrdering>, Constable
Enclosing interface:
Block

public static enum Block.MvOrdering extends Enum<Block.MvOrdering>
How are multivalued fields ordered? Some operators can enable its optimization when mv_values are sorted ascending or de-duplicated.
  • Enum Constant Details

    • UNORDERED

      public static final Block.MvOrdering UNORDERED
    • DEDUPLICATED_UNORDERD

      public static final Block.MvOrdering DEDUPLICATED_UNORDERD
    • DEDUPLICATED_AND_SORTED_ASCENDING

      public static final Block.MvOrdering DEDUPLICATED_AND_SORTED_ASCENDING
    • SORTED_ASCENDING

      public static final Block.MvOrdering SORTED_ASCENDING
  • Method Details

    • values

      public static Block.MvOrdering[] 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 Block.MvOrdering 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