Interface WindowSpecification<T>


public interface WindowSpecification<T>
A specification for a Window.
Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    The window's lower frame bound.
    The window order.
    Function<? super T,?>
    The window partition function.
    long
    The window's upper frame bound.
  • Method Details

    • partition

      Function<? super T,?> partition()
      The window partition function.
    • order

      Optional<Comparator<? super T>> order()
      The window order.
    • lower

      long lower()
      The window's lower frame bound.
    • upper

      long upper()
      The window's upper frame bound.