Package org.hibernate

Enum Class ScrollMode

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

public enum ScrollMode extends Enum<ScrollMode>
Specifies the type of JDBC scrollable result set to use underneath a ScrollableResults.
  • Enum Constant Details

    • FORWARD_ONLY

      public static final ScrollMode FORWARD_ONLY
      Requests a scrollable result that is only scrollable forwards.
      See Also:
    • SCROLL_SENSITIVE

      public static final ScrollMode SCROLL_SENSITIVE
      Requests a scrollable result which is sensitive to changes in the underlying data.
      See Also:
    • SCROLL_INSENSITIVE

      public static final ScrollMode SCROLL_INSENSITIVE
      Requests a scrollable result which is insensitive to changes in the underlying data.

      Note that since the Hibernate session acts as a cache, you might need to explicitly evict objects, if you need to see changes made by other transactions.

      See Also:
  • Method Details

    • values

      public static ScrollMode[] 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 ScrollMode 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
    • toResultSetType

      public int toResultSetType()
      Get the corresponding JDBC scroll type code constant value.
      Returns:
      the JDBC result set type code
    • lessThan

      public boolean lessThan(ScrollMode other)
      Determine if this mode is "less than" the provided mode.
      Parameters:
      other - The provided mode
      Returns:
      true if this mode is less than the other.