Class BasePredicate
- java.lang.Object
-
- org.apache.pinot.common.request.context.predicate.BasePredicate
-
- All Implemented Interfaces:
Predicate
- Direct Known Subclasses:
BaseInPredicate,EqPredicate,IsNotNullPredicate,IsNullPredicate,JsonMatchPredicate,NotEqPredicate,RangePredicate,RegexpLikePredicate,TextContainsPredicate,TextMatchPredicate
public abstract class BasePredicate extends Object implements Predicate
Abstract predicate with left-hand side expression
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.pinot.common.request.context.predicate.Predicate
Predicate.Type
-
-
Field Summary
Fields Modifier and Type Field Description protected ExpressionContext_lhs
-
Constructor Summary
Constructors Constructor Description BasePredicate(ExpressionContext lhs)
-
Method Summary
Modifier and Type Method Description ExpressionContextgetLhs()Returns the left-hand side expression of the predicate.voidsetLhs(ExpressionContext lhs)Sets the left-hand side expression of the predicate.
-
-
-
Field Detail
-
_lhs
protected ExpressionContext _lhs
-
-
Constructor Detail
-
BasePredicate
public BasePredicate(ExpressionContext lhs)
-
-
Method Detail
-
getLhs
public ExpressionContext getLhs()
Description copied from interface:PredicateReturns the left-hand side expression of the predicate.
-
setLhs
public void setLhs(ExpressionContext lhs)
Description copied from interface:PredicateSets the left-hand side expression of the predicate.
-
-