static enum SqlInputValue.Mode extends Enum<SqlInputValue.Mode>
Enum Constant and Description |
---|
IN
By default it's input parameter.
|
INOUT
It's used for input/output parameter.
|
OUT
It's used for output parameter.
|
Modifier and Type | Method and Description |
---|---|
static SqlInputValue.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlInputValue.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlInputValue.Mode IN
public static final SqlInputValue.Mode OUT
public static final SqlInputValue.Mode INOUT
public static SqlInputValue.Mode[] values()
for (SqlInputValue.Mode c : SqlInputValue.Mode.values()) System.out.println(c);
public static SqlInputValue.Mode 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 nullCopyright © 2015. All rights reserved.