Package org.apache.openjpa.jdbc.sql
Enum StoredProcedure.PARAM
- java.lang.Object
-
- java.lang.Enum<StoredProcedure.PARAM>
-
- org.apache.openjpa.jdbc.sql.StoredProcedure.PARAM
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StoredProcedure.PARAM>
- Enclosing class:
- StoredProcedure
public static enum StoredProcedure.PARAM extends java.lang.Enum<StoredProcedure.PARAM>
An enumeration on type of parameter for a Stored Procedure. The enumerted values has the same ordinal numbers as found in corresponding integer values inDatabaseMetaData
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StoredProcedure.PARAM
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
UNKNOW
public static final StoredProcedure.PARAM UNKNOW
-
IN
public static final StoredProcedure.PARAM IN
-
INOUT
public static final StoredProcedure.PARAM INOUT
-
RESULT
public static final StoredProcedure.PARAM RESULT
-
OUT
public static final StoredProcedure.PARAM OUT
-
RETURN
public static final StoredProcedure.PARAM RETURN
-
-
Method Detail
-
values
public static StoredProcedure.PARAM[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StoredProcedure.PARAM c : StoredProcedure.PARAM.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StoredProcedure.PARAM valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-