Class And

All Implemented Interfaces:
Expression

@Evolving public final class And extends Predicate
AND expression

Definition:

  • Logical expr1 AND expr2 on two inputs.
  • Requires both left and right input expressions of type Predicate.
  • Result is null when both inputs are null, or when one input is null and the other is true.
Since:
3.0.0
  • Constructor Details

  • Method Details

    • getLeft

      public Predicate getLeft()
      Returns:
      Left side operand.
    • getRight

      public Predicate getRight()
      Returns:
      Right side operand.