Package com.enonic.xp.query.expr
Class LogicalExpr
- java.lang.Object
-
- com.enonic.xp.query.expr.LogicalExpr
-
- All Implemented Interfaces:
ConstraintExpr,Expression
@PublicApi public final class LogicalExpr extends Object implements ConstraintExpr
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLogicalExpr.Operator
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LogicalExprand(ConstraintExpr left, ConstraintExpr right)ConstraintExprgetLeft()LogicalExpr.OperatorgetOperator()ConstraintExprgetRight()static LogicalExpror(ConstraintExpr left, ConstraintExpr right)StringtoString()
-
-
-
Method Detail
-
getLeft
public ConstraintExpr getLeft()
-
getRight
public ConstraintExpr getRight()
-
getOperator
public LogicalExpr.Operator getOperator()
-
and
public static LogicalExpr and(ConstraintExpr left, ConstraintExpr right)
-
or
public static LogicalExpr or(ConstraintExpr left, ConstraintExpr right)
-
-