Package com.sap.cds.ql.cqn
Interface CqnPlain
- All Superinterfaces:
CqnToken,CqnValue,JSONizable
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidaccept(CqnVisitor visitor) Traverses the expression tree represented by this token with a givenvisitor.default CqnPlainasPlain()Casts this value toCqnPlain.default booleanisPlain()Returnstrueif this is aCqnPlainvalue.plain()Returns the name plain value.Methods inherited from interface com.sap.cds.ql.cqn.CqnValue
as, asExpression, asFunction, asList, asLiteral, asNullValue, asParameter, asRef, isExpression, isFunction, isList, isLiteral, isNullValue, isParameter, isRef, ofLiteral, ofRef, typeMethods inherited from interface com.sap.cds.JSONizable
toJson
-
Method Details
-
plain
String plain()Returns the name plain value.- Returns:
- the plain value
-
isPlain
default boolean isPlain()Description copied from interface:CqnValueReturnstrueif this is aCqnPlainvalue. -
asPlain
Description copied from interface:CqnValueCasts this value toCqnPlain. -
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 interfaceCqnToken- Parameters:
visitor- theCqnVisitor
-