public static enum StoredProcedure.PARAM extends Enum<StoredProcedure.PARAM>
DatabaseMetaData
.Enum Constant and Description |
---|
IN |
INOUT |
OUT |
RESULT |
RETURN |
UNKNOW |
Modifier and Type | Method and Description |
---|---|
static StoredProcedure.PARAM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredProcedure.PARAM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredProcedure.PARAM UNKNOW
public static final StoredProcedure.PARAM IN
public static final StoredProcedure.PARAM INOUT
public static final StoredProcedure.PARAM RESULT
public static final StoredProcedure.PARAM OUT
public static final StoredProcedure.PARAM RETURN
public static StoredProcedure.PARAM[] values()
for (StoredProcedure.PARAM c : StoredProcedure.PARAM.values()) System.out.println(c);
public static StoredProcedure.PARAM 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 © 2006–2020 Apache Software Foundation. All rights reserved.