public enum QueryScrollType extends java.lang.Enum<QueryScrollType>
Enum Constant and Description |
---|
FORWARD_ONLY |
SCROLL_INSENSITIVE |
SCROLL_SENSITIVE |
Modifier and Type | Method and Description |
---|---|
int |
value() |
static QueryScrollType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryScrollType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryScrollType FORWARD_ONLY
ResultSet.TYPE_FORWARD_ONLY
public static final QueryScrollType SCROLL_SENSITIVE
ResultSet.TYPE_SCROLL_SENSITIVE
public static final QueryScrollType SCROLL_INSENSITIVE
ResultSet.TYPE_SCROLL_INSENSITIVE
public static QueryScrollType[] values()
for (QueryScrollType c : QueryScrollType.values()) System.out.println(c);
public static QueryScrollType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
Copyright © 2003-present Jodd Team