public enum StoredProcQueryParameterMode extends Enum<StoredProcQueryParameterMode>
| Enum Constant and Description |
|---|
IN |
INOUT |
OUT |
REF_CURSOR |
| Modifier and Type | Method and Description |
|---|---|
static StoredProcQueryParameterMode |
getMode(String value) |
static StoredProcQueryParameterMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredProcQueryParameterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredProcQueryParameterMode IN
public static final StoredProcQueryParameterMode OUT
public static final StoredProcQueryParameterMode INOUT
public static final StoredProcQueryParameterMode REF_CURSOR
public static StoredProcQueryParameterMode[] values()
for (StoredProcQueryParameterMode c : StoredProcQueryParameterMode.values()) System.out.println(c);
public static StoredProcQueryParameterMode 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 nullpublic static StoredProcQueryParameterMode getMode(String value)
Copyright © 2017. All rights reserved.