public class OracleCmdParams
extends java.lang.Object
Constructor | Description |
---|---|
OracleCmdParams() |
Creates an instance of Oracle command parameters with OracleParameterDirection.Input.
|
Modifier and Type | Method | Description |
---|---|---|
OracleParameterDirection |
getDirection() |
Gets the direction of the passed parameters (in/out).
|
OracleCmdParamsType |
getType() |
Gets the type of the command parameter.
|
java.lang.Object |
getValue() |
Gets the value of the command parameter.
|
void |
setDirection(OracleParameterDirection direction) |
Sets the direction of the passed parameters (in/out).
|
void |
setType(OracleCmdParamsType type) |
Sets the type of the command parameter.
|
void |
setValue(java.lang.Object value) |
Sets the value of the command parameter.
|
public OracleCmdParams()
public OracleParameterDirection getDirection()
public void setDirection(OracleParameterDirection direction)
direction
- The direction of parameters to set.public OracleCmdParamsType getType()
public void setType(OracleCmdParamsType type)
type
- The command param type.public java.lang.Object getValue()
public void setValue(java.lang.Object value)
value
- The value against the command param.