public static enum StoredProcedure.ParamType extends Enum<StoredProcedure.ParamType>
StoredProcedure.Param
.
Enum Constant and Description |
---|
IN
The param is used as an argument only.
|
IN_OUT
The param is used as an argument and returns a value.
|
OUT
The param returns a value.
|
Modifier and Type | Method and Description |
---|---|
static StoredProcedure.ParamType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredProcedure.ParamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredProcedure.ParamType IN
public static final StoredProcedure.ParamType OUT
public static final StoredProcedure.ParamType IN_OUT
public static StoredProcedure.ParamType[] values()
for (StoredProcedure.ParamType c : StoredProcedure.ParamType.values()) System.out.println(c);
public static StoredProcedure.ParamType 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 © 2003–2020 XDEV Software. All rights reserved.