Package com.sap.cds.ql.cqn
Interface CqnWindowFunc
- All Superinterfaces:
CqnFunc,CqnToken,CqnValue,JSONizable
- All Known Subinterfaces:
WindowFunctionCall<T>
A window function call. A window function an only be executed on an SQL data store.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptiondefault voidaccept(CqnVisitor visitor) Traverses the expression tree represented by this token with a givenvisitor.window()Returns the window specification of this window functionMethods inherited from interface com.sap.cds.ql.cqn.CqnFunc
args, asFunction, func, isFunctionMethods inherited from interface com.sap.cds.ql.cqn.CqnValue
as, asExpression, asList, asLiteral, asNullValue, asParameter, asPlain, asRef, isExpression, isList, isLiteral, isNullValue, isParameter, isPlain, isRef, ofLiteral, ofRef, typeMethods inherited from interface com.sap.cds.JSONizable
toJson
-
Method Details
-
window
CqnWindowFunc.WindowSpecification window()Returns the window specification of this window function- Returns:
- the window specification
-
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 interfaceCqnFunc- Specified by:
acceptin interfaceCqnToken- Parameters:
visitor- theCqnVisitor
-