Package com.sap.cds.ql.cqn
Interface CqnSortSpecification
- All Superinterfaces:
CqnToken
,JSONizable
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
accept
(CqnVisitor visitor) Traverses the expression tree represented by this token with a givenvisitor
.order()
value()
Methods inherited from interface com.sap.cds.JSONizable
toJson
-
Method Details
-
value
CqnValue value() -
order
CqnSortSpecification.Order order() -
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
-