org.hibernate
Enum ScrollMode
java.lang.Object
java.lang.Enum<ScrollMode>
org.hibernate.ScrollMode
- All Implemented Interfaces:
- Serializable, Comparable<ScrollMode>
public enum ScrollMode
- extends Enum<ScrollMode>
Specifies the type of JDBC scrollable result set to use
underneath a ScrollableResults
- See Also:
Query.scroll(ScrollMode)
,
ScrollableResults
FORWARD_ONLY
public static final ScrollMode FORWARD_ONLY
- See Also:
ResultSet.TYPE_FORWARD_ONLY
SCROLL_SENSITIVE
public static final ScrollMode SCROLL_SENSITIVE
- See Also:
ResultSet.TYPE_SCROLL_SENSITIVE
SCROLL_INSENSITIVE
public static final ScrollMode SCROLL_INSENSITIVE
- Note that since the Hibernate session acts as a cache, you
might need to expicitly evict objects, if you need to see
changes made by other transactions.
- See Also:
ResultSet.TYPE_SCROLL_INSENSITIVE
values
public static ScrollMode[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ScrollMode c : ScrollMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ScrollMode 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
toResultSetType
public int toResultSetType()
- Returns:
- the JDBC result set type code
lessThan
public boolean lessThan(ScrollMode other)
Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.