所有已实现的接口:
Expression

@Evolving public final class And extends Predicate
AND 表达式

定义

  • 两个输入上的逻辑 expr1 AND expr2
  • 要求左右输入表达式都是 Predicate 类型。
  • 当两个输入都为 null,或者一个输入为 null 另一个输入为 true 时,结果为 null。
3.0.0
  • 构造器详细信息

  • 方法详情

    • getLeft

      public Predicate getLeft()
      返回
      左侧操作数。
    • getRight

      public Predicate getRight()
      返回
      右侧操作数。