public enum QueryReturnType extends Enum<QueryReturnType>
| Enum Constant | Description |
|---|---|
DOES_NOT_PRODUCE_RESULT_SET |
|
MAY_PRODUCE_RESULT_SET |
|
NONE |
|
PRODUCES_RESULT_SET |
| Modifier and Type | Method | Description |
|---|---|---|
static QueryReturnType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static QueryReturnType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryReturnType PRODUCES_RESULT_SET
public static final QueryReturnType MAY_PRODUCE_RESULT_SET
public static final QueryReturnType DOES_NOT_PRODUCE_RESULT_SET
public static final QueryReturnType NONE
public static QueryReturnType[] values()
for (QueryReturnType c : QueryReturnType.values()) System.out.println(c);
public static QueryReturnType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null