public enum OracleCommandType extends java.lang.Enum<OracleCommandType>
Enum Constant | Description |
---|---|
StoredProcedure |
When the CommandType property is set to StoredProcedure,
the CommandText property should be set to the name of the stored procedure.
|
Text |
Text SQL statement to execute against the database.
|
Modifier and Type | Method | Description |
---|---|---|
static OracleCommandType |
forValue(int value) |
retreives the enum constant of the specified value, if exists.
|
static OracleCommandType |
getOracleCommandType(CommandType commandType) |
retreives the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static OracleCommandType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static OracleCommandType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleCommandType Text
public static final OracleCommandType StoredProcedure
public static OracleCommandType[] values()
for (OracleCommandType c : OracleCommandType.values()) System.out.println(c);
public static OracleCommandType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static OracleCommandType getOracleCommandType(CommandType commandType)
commandType
- CommandTypepublic int getValue()
public static OracleCommandType forValue(int value)
value
- enum constant index