Interface CqnWindowFunc

All Superinterfaces:
CqnFunc, CqnToken, CqnValue, JSONizable
All Known Subinterfaces:
WindowFunctionCall<T>

@Beta public interface CqnWindowFunc extends CqnFunc
A window function call. A window function an only be executed on an SQL data store.
  • Method Details

    • window

      Returns the window specification of this window function
      Returns:
      the window specification
    • accept

      default void accept(CqnVisitor visitor)
      Description copied from interface: CqnToken
      Traverses the expression tree represented by this token with a given visitor. The traversal order is depth-first. If this token has child nodes they are traversed first by dispatching the visitor to the children's accept methods. Afterwards this token is passed to the visitor's visit method specific for this token's type.
      Specified by:
      accept in interface CqnFunc
      Specified by:
      accept in interface CqnToken
      Parameters:
      visitor - the CqnVisitor