Package com.sap.cds.ql.cqn
Interface CqnListValue
- All Superinterfaces:
CqnToken
,CqnValue
,JSONizable
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
accept
(CqnVisitor visitor) Traverses the expression tree represented by this token with a givenvisitor
.default CqnListValue
asList()
Casts this value toCqnListValue
.default boolean
isList()
Returnstrue
if this is aCqnListValue
value.int
size()
values()
Methods inherited from interface com.sap.cds.ql.cqn.CqnValue
as, asExpression, asFunction, asLiteral, asNullValue, asParameter, asPlain, asRef, isExpression, isFunction, isLiteral, isNullValue, isParameter, isPlain, isRef, ofLiteral, ofRef, type
Methods inherited from interface com.sap.cds.JSONizable
toJson
-
Method Details
-
values
-
size
int size() -
isList
default boolean isList()Description copied from interface:CqnValue
Returnstrue
if this is aCqnListValue
value. -
asList
Description copied from interface:CqnValue
Casts this value toCqnListValue
. -
accept
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 interfaceCqnToken
- Parameters:
visitor
- theCqnVisitor
-