Package com.sap.cds.ql.cqn
Interface CqnContainmentTest
- All Superinterfaces:
CqnExpression,CqnFunc,CqnPredicate,CqnToken,CqnValue,JSONizable
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptiondefault voidaccept(CqnVisitor visitor) Traverses the expression tree represented by this token with a givenvisitor.booleanposition()term()value()Methods inherited from interface com.sap.cds.ql.cqn.CqnExpression
asArithmeticExpression, asCaseExpression, asExpression, asNegation, isArithmeticExpression, isCaseExpression, isExpression, isNegation, toJsonMethods inherited from interface com.sap.cds.ql.cqn.CqnFunc
args, asFunction, func, isFunctionMethods inherited from interface com.sap.cds.ql.cqn.CqnPredicate
asPredicate, isPredicateMethods inherited from interface com.sap.cds.ql.cqn.CqnValue
as, asList, asLiteral, asNullValue, asParameter, asPlain, asRef, isList, isLiteral, isNullValue, isParameter, isPlain, isRef, ofLiteral, ofRef, type
-
Method Details
-
position
CqnContainmentTest.Position position() -
value
CqnValue value() -
term
CqnValue term() -
caseInsensitive
boolean caseInsensitive() -
accept
Description copied from interface:CqnTokenTraverses 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'sacceptmethods. Afterwards this token is passed to the visitor'svisitmethod specific for this token's type.- Specified by:
acceptin interfaceCqnExpression- Specified by:
acceptin interfaceCqnFunc- Specified by:
acceptin interfaceCqnToken- Parameters:
visitor- theCqnVisitor
-