|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SqlInputValue.Mode>
org.sqlproc.engine.impl.SqlInputValue.Mode
static enum SqlInputValue.Mode
Enumeration for IN/OUT/INOUT mode of callable statement parameter.
Enum Constant Summary | |
---|---|
IN
By default it's input parameter. |
|
INOUT
It's used for input/output parameter. |
|
OUT
It's used for output parameter. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SqlInputValue.Mode IN
public static final SqlInputValue.Mode OUT
public static final SqlInputValue.Mode INOUT
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |