Enum Class AsOfJoinRule

java.lang.Object
java.lang.Enum<AsOfJoinRule>
io.deephaven.api.AsOfJoinRule
All Implemented Interfaces:
Serializable, Comparable<AsOfJoinRule>, java.lang.constant.Constable

public enum AsOfJoinRule extends Enum<AsOfJoinRule>
The match condition rule for the final match column of as-of-join.
See Also:
  • Enum Constant Details

    • LESS_THAN_EQUAL

      public static final AsOfJoinRule LESS_THAN_EQUAL
    • LESS_THAN

      public static final AsOfJoinRule LESS_THAN
    • GREATER_THAN_EQUAL

      public static final AsOfJoinRule GREATER_THAN_EQUAL
    • GREATER_THAN

      public static final AsOfJoinRule GREATER_THAN
  • Method Details

    • values

      public static AsOfJoinRule[] 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 AsOfJoinRule 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
    • parse

      public static AsOfJoinRule parse(String x)
    • operatorString

      public String operatorString()