Class ExistsPredicate
java.lang.Object
com.blazebit.persistence.parser.expression.AbstractExpression
com.blazebit.persistence.parser.predicate.AbstractPredicate
com.blazebit.persistence.parser.predicate.UnaryExpressionPredicate
com.blazebit.persistence.parser.predicate.ExistsPredicate
- All Implemented Interfaces:
Expression,Negatable,Predicate
public class ExistsPredicate extends UnaryExpressionPredicate
- 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.UnaryExpressionPredicate
expression -
Constructor Summary
Constructors Constructor Description ExistsPredicate()ExistsPredicate(boolean negated)ExistsPredicate(Expression expression, 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.ExistsPredicatecopy(ExpressionCopyContext copyContext)Methods inherited from class com.blazebit.persistence.parser.predicate.UnaryExpressionPredicate
equals, getExpression, hashCode, setExpressionMethods inherited from class com.blazebit.persistence.parser.predicate.AbstractPredicate
isNegated, negate, setNegated
-
Constructor Details
-
ExistsPredicate
public ExistsPredicate() -
ExistsPredicate
public ExistsPredicate(boolean negated) -
ExistsPredicate
-
-
Method Details
-
copy
- Specified by:
copyin interfaceExpression- Specified by:
copyin interfacePredicate- Specified by:
copyin classUnaryExpressionPredicate- Returns:
-
accept
Description copied from interface:ExpressionThe expression tree is traversed in pre-order. -
accept
-