Enum Class FrameKind

java.lang.Object
java.lang.Enum<FrameKind>
org.hibernate.query.common.FrameKind
All Implemented Interfaces:
Serializable, Comparable<FrameKind>, Constable

public enum FrameKind extends Enum<FrameKind>
  • Enum Constant Details

    • UNBOUNDED_PRECEDING

      public static final FrameKind UNBOUNDED_PRECEDING
    • OFFSET_PRECEDING

      public static final FrameKind OFFSET_PRECEDING
    • CURRENT_ROW

      public static final FrameKind CURRENT_ROW
    • OFFSET_FOLLOWING

      public static final FrameKind OFFSET_FOLLOWING
    • UNBOUNDED_FOLLOWING

      public static final FrameKind UNBOUNDED_FOLLOWING
  • Method Details

    • values

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

      public static FrameKind valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null