Package com.sap.cds.ql
Interface BooleanFunction
-
- All Superinterfaces:
CqnExpression
,CqnFunc
,CqnPredicate
,CqnToken
,CqnValue
,JSONizable
,Predicate
public interface BooleanFunction extends Predicate, CqnFunc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
accept(CqnVisitor visitor)
Traverses the expression tree represented by this token with a givenvisitor
.BooleanFunction
args(CqnValue... args)
-
Methods inherited from interface com.sap.cds.ql.cqn.CqnExpression
asArithmeticExpression, asExpression, asNegation, isArithmeticExpression, isExpression, isNegation, toJson
-
Methods inherited from interface com.sap.cds.ql.cqn.CqnFunc
args, asFunction, func, isFunction
-
Methods inherited from interface com.sap.cds.ql.cqn.CqnPredicate
asPredicate, isPredicate
-
Methods inherited from interface com.sap.cds.ql.cqn.CqnValue
as, asList, asLiteral, asNullValue, asParameter, asPlain, asRef, isList, isLiteral, isNullValue, isParameter, isPlain, isRef, ofRef, type
-
-
-
-
Method Detail
-
args
BooleanFunction args(CqnValue... args)
-
accept
default void accept(CqnVisitor visitor)
Description copied from interface:CqnToken
Traverses the expression tree represented by this token with a givenvisitor
. The traversal order is depth-first. If this token has child nodes they are traversed first by dispatching the visitor to the children'saccept
methods. Afterwards this token is passed to the visitor'svisit
method specific for this token's type.- Specified by:
accept
in interfaceCqnExpression
- Specified by:
accept
in interfaceCqnFunc
- Specified by:
accept
in interfaceCqnToken
- Parameters:
visitor
- theCqnVisitor
-
-