public class StoredProcedureParameter
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private byte[] |
type
the type of the parameter
|
private byte[] |
value
the value of the parameter
|
| Constructor and Description |
|---|
StoredProcedureParameter() |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getType()
Gets the type as a byte[].
|
java.lang.String |
getTypeString()
Gets the type as a UTF8 String.
|
byte[] |
getValue()
Gets the value as a byte[].
|
java.lang.String |
getValueString()
Gets the value as a UTF8 String.
|
void |
setType(byte[] type)
Sets the type.
|
void |
setValue(byte[] value)
Sets the value.
|
private byte[] type
private byte[] value
public java.lang.String getTypeString()
public java.lang.String getValueString()
public byte[] getType()
public void setType(byte[] type)
type - The type as a byte[].public byte[] getValue()
public void setValue(byte[] value)
value - The value as a byte[].