@Status(stage=PRODUCTION, unitTests=NOT_APPLICABLE) @Reviews(value=@Review(by="Kees Schotanus",at="2009-04-13")) public enum StoredProcedureParameterType extends Enum<StoredProcedureParameterType>
StoredProcedure
and StoredProcedureParameter
.Enum Constant and Description |
---|
IN
An input parameter.
|
INOUT
An input/output parameter.
|
OUT
An output parameter.
|
Modifier and Type | Method and Description |
---|---|
static StoredProcedureParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredProcedureParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredProcedureParameterType IN
public static final StoredProcedureParameterType INOUT
public static final StoredProcedureParameterType OUT
public static StoredProcedureParameterType[] values()
for (StoredProcedureParameterType c : StoredProcedureParameterType.values()) System.out.println(c);
public static StoredProcedureParameterType 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 © 2008–2018. All rights reserved.