Class GtPredicate
java.lang.Object
com.blazebit.persistence.parser.expression.AbstractExpression
com.blazebit.persistence.parser.predicate.AbstractPredicate
com.blazebit.persistence.parser.predicate.BinaryExpressionPredicate
com.blazebit.persistence.parser.predicate.QuantifiableBinaryExpressionPredicate
com.blazebit.persistence.parser.predicate.GtPredicate
- All Implemented Interfaces:
Expression,Negatable,Predicate
public class GtPredicate extends QuantifiableBinaryExpressionPredicate
- Since:
- 1.0.0
- Author:
- Christian Beikov, Moritz Becker
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.blazebit.persistence.parser.expression.Expression
Expression.ResultVisitor<T>, Expression.Visitor -
Field Summary
Fields inherited from class com.blazebit.persistence.parser.predicate.QuantifiableBinaryExpressionPredicate
quantifierFields inherited from class com.blazebit.persistence.parser.predicate.BinaryExpressionPredicate
left, right -
Constructor Summary
Constructors Constructor Description GtPredicate()GtPredicate(Expression left, Expression right)GtPredicate(Expression left, Expression right, boolean negated)GtPredicate(Expression left, Expression right, PredicateQuantifier quantifier, boolean negated) -
Method Summary
Modifier and Type Method Description <T> Taccept(Expression.ResultVisitor<T> visitor)voidaccept(Expression.Visitor visitor)The expression tree is traversed in pre-order.GtPredicatecopy(ExpressionCopyContext copyContext)Methods inherited from class com.blazebit.persistence.parser.predicate.QuantifiableBinaryExpressionPredicate
equals, getQuantifier, hashCode, setQuantifierMethods inherited from class com.blazebit.persistence.parser.predicate.BinaryExpressionPredicate
getLeft, getRight, setLeft, setRightMethods inherited from class com.blazebit.persistence.parser.predicate.AbstractPredicate
isNegated, negate, setNegated
-
Constructor Details
-
GtPredicate
public GtPredicate() -
GtPredicate
-
GtPredicate
-
GtPredicate
public GtPredicate(Expression left, Expression right, PredicateQuantifier quantifier, boolean negated)
-
-
Method Details
-
copy
- Specified by:
copyin interfaceExpression- Specified by:
copyin interfacePredicate- Specified by:
copyin classQuantifiableBinaryExpressionPredicate- Returns:
-
accept
Description copied from interface:ExpressionThe expression tree is traversed in pre-order. -
accept
-