|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<InOutDefinition>
org.jooq.util.InOutDefinition
public enum InOutDefinition
The parameter type of a stored procedure
| Enum Constant Summary | |
|---|---|
IN
An in parameter. |
|
INOUT
An in/out parameter |
|
OUT
An out parameter |
|
RETURN
A return value for a function |
|
| Method Summary | |
|---|---|
static InOutDefinition |
getFromString(String string)
Convert a string into the corresponding InOutDefinition value. |
static InOutDefinition |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InOutDefinition[] |
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 InOutDefinition IN
public static final InOutDefinition OUT
public static final InOutDefinition INOUT
public static final InOutDefinition RETURN
| Method Detail |
|---|
public static InOutDefinition[] values()
for (InOutDefinition c : InOutDefinition.values()) System.out.println(c);
public static InOutDefinition 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 nullpublic static final InOutDefinition getFromString(String string)
InOutDefinition value.
string - IN, OUT, INOUT or null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||