Enum WindowFrameExclusion

java.lang.Object
java.lang.Enum<WindowFrameExclusion>
org.h2.expression.analysis.WindowFrameExclusion
All Implemented Interfaces:
Serializable, Comparable<WindowFrameExclusion>, java.lang.constant.Constable

public enum WindowFrameExclusion extends Enum<WindowFrameExclusion>
Window frame exclusion clause.
  • Enum Constant Details

    • EXCLUDE_CURRENT_ROW

      public static final WindowFrameExclusion EXCLUDE_CURRENT_ROW
      EXCLUDE CURRENT ROW exclusion clause.
    • EXCLUDE_GROUP

      public static final WindowFrameExclusion EXCLUDE_GROUP
      EXCLUDE GROUP exclusion clause.
    • EXCLUDE_TIES

      public static final WindowFrameExclusion EXCLUDE_TIES
      EXCLUDE TIES exclusion clause.
    • EXCLUDE_NO_OTHERS

      public static final WindowFrameExclusion EXCLUDE_NO_OTHERS
      EXCLUDE NO OTHERS exclusion clause.
  • Field Details

    • sql

      private final String sql
  • Constructor Details

    • WindowFrameExclusion

      private WindowFrameExclusion(String sql)
  • Method Details

    • values

      public static WindowFrameExclusion[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static WindowFrameExclusion valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • isGroupOrNoOthers

      public boolean isGroupOrNoOthers()
      Returns true if this exclusion clause excludes or includes the whole group.
      Returns:
      true if this exclusion clause is EXCLUDE_GROUP or EXCLUDE_NO_OTHERS
    • getSQL

      public String getSQL()
      Returns SQL representation.
      Returns:
      SQL representation.
      See Also: