Record Class Predicate

java.lang.Object
java.lang.Record
com.onec.query.Predicate

public record Predicate(Path path, Predicate.Op op, Object value, Object value2, List<?> values) extends Record
A WHERE condition on a Path. value/values carry the operands; which fields apply depends on Predicate.Op:
  • EQ NE GT GTE LT LTE LIKE use value
  • BETWEEN uses value (low) and value2 (high)
  • IN uses values
  • IS_NULL IS_NOT_NULL use no operand
Ref operands are unwrapped to their UUID at bind time by the engine.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Predicate(Path path, Predicate.Op op, Object value, Object value2, List<?> values)
    Creates an instance of a Predicate record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    op()
    Returns the value of the op record component.
    Returns the value of the path record component.
    final String
    Returns a string representation of this record class.
    Returns the value of the value record component.
    Returns the value of the value2 record component.
    List<?>
    Returns the value of the values record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Predicate

      public Predicate(Path path, Predicate.Op op, Object value, Object value2, List<?> values)
      Creates an instance of a Predicate record class.
      Parameters:
      path - the value for the path record component
      op - the value for the op record component
      value - the value for the value record component
      value2 - the value for the value2 record component
      values - the value for the values record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • path

      public Path path()
      Returns the value of the path record component.
      Returns:
      the value of the path record component
    • op

      public Predicate.Op op()
      Returns the value of the op record component.
      Returns:
      the value of the op record component
    • value

      public Object value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • value2

      public Object value2()
      Returns the value of the value2 record component.
      Returns:
      the value of the value2 record component
    • values

      public List<?> values()
      Returns the value of the values record component.
      Returns:
      the value of the values record component