Enum Class DownsampledWhereFilter.SampleOrder

java.lang.Object
java.lang.Enum<DownsampledWhereFilter.SampleOrder>
io.deephaven.engine.table.impl.select.DownsampledWhereFilter.SampleOrder
All Implemented Interfaces:
Serializable, Comparable<DownsampledWhereFilter.SampleOrder>, java.lang.constant.Constable
Enclosing class:
DownsampledWhereFilter

public static enum DownsampledWhereFilter.SampleOrder extends Enum<DownsampledWhereFilter.SampleOrder>
Enum to use when selecting downsampling behavior:

LOWERFIRST is the constant for lowerBin/firstBy.

UPPERLAST is the constant for upperBin/lastBy. (Default)

  • Enum Constant Details

  • Method Details

    • values

      public static DownsampledWhereFilter.SampleOrder[] 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 DownsampledWhereFilter.SampleOrder 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