|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object jet.connect.DbValue jet.connect.DbBinary
public class DbBinary
The DbBinary
class wraps an array of primitive type byte
in an object. An object of the type DbBinary
contains a single
field whose type is byte
array.
In addition, this class provides several methods for the interconversion of
a byte
array and a String
array,
as well as other constants and methods used when dealing
with a DbBinary
.
Field Summary | |
---|---|
byte[] |
value
Deprecated. |
Fields inherited from class jet.connect.DbValue |
---|
bNull, CHAR_DESC, CURRENCY_DESC, DATE_DESC, desc, DOUBLE_DESC, INTEGER_DESC, TIME_DESC |
Fields inherited from interface jet.util.DbValueable |
---|
EQUAL, GREATER, LESS |
Constructor Summary | |
---|---|
DbBinary()
Constructs an uninitialized DbBinary . |
|
DbBinary(DbColDesc desc)
Constructs an uninitialized DbBinary . |
Method Summary | |
---|---|
java.lang.Object |
clone()
Creates a clone of this DbBinary object. |
int |
compareTo(DbValue v)
Compares this DbBinary object with the DbValue object. |
boolean |
equals(DbValue v)
Compares this object to the specified object. |
byte[] |
get()
Returns the value of this DbBinary as a
byte array value. |
void |
set(byte[] v)
Sets a newly allocated DbBinary object that
represents the specified byte array argument. |
void |
set(DbValue v)
Sets a newly allocated DbBinary object that
represents the byte array value indicated by the
DbValue parameter. |
void |
set(JRHierarchicalDataset hds,
int col)
Sets a newly allocated DbBinary object that
represents the byte array value indicated by the
JRHierarchicalDataset parameter and an index of the column. |
void |
set(java.sql.ResultSet rs,
int col)
Sets a newly allocated DbBinary object that
represents the byte array value indicated by the
ResultSet parameter and an index of the column. |
void |
setValue(java.lang.String v)
Sets a newly allocated DbBinary object that
represents the byte array value indicated by the
String parameter. |
java.lang.String |
toString()
Returns a String object representing this
byte array's value. |
java.lang.String |
toStringValue()
|
Methods inherited from class jet.connect.DbValue |
---|
compareTo, compareTo, equals, getColDesc, getPrecision, getScale, getSqlType, isCurrency, isNull, makeDbValue, setColDesc, setfoo, setNull, setValue |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public byte[] value
get
and set
to access it instead of accessing it directly.
Constructor Detail |
---|
public DbBinary()
DbBinary
. This
DbBinary object is mutable until the value and the description of the column are set.
public DbBinary(DbColDesc desc)
DbBinary
. This
DbBinary object is mutable until the value is set.
desc
- The value to be represented by the
DbColDesc
object.Method Detail |
---|
public byte[] get()
DbBinary
as a
byte
array value.
public void set(byte[] v)
DbBinary
object that
represents the specified byte
array argument.
v
- The value to be represented by the
DbBinary
object.public void set(java.sql.ResultSet rs, int col) throws java.sql.SQLException
DbBinary
object that
represents the byte
array value indicated by the
ResultSet
parameter and an index of the column.
set
in class DbValue
rs
- The ResultSet
to be fetched.col
- The index of the column.
java.sql.SQLException
- if the ResultSet
does not
contain the index.public void set(JRHierarchicalDataset hds, int col) throws java.sql.SQLException
DbBinary
object that
represents the byte
array value indicated by the
JRHierarchicalDataset
parameter and an index of the column.
set
in class DbValue
hds
- The JRHierarchicalDataset
to be fetched.col
- The index of the column.
java.sql.SQLException
- if the ResultSet
does not
contain the index.public java.lang.String toString()
String
object representing this
byte
array's value. The value is converted from the byte array
and returned as a string. If the value is null, it returns "NULL".
toString
in class DbValue
public java.lang.Object clone()
DbBinary
object.
clone
in interface jet.util.DbValueable
clone
in class DbValue
public boolean equals(DbValue v)
equals
in class DbValue
v
- The DbValue object to be compared with.
public int compareTo(DbValue v)
DbBinary
object with the DbValue object.
compareTo
in class DbValue
DbValueable
public void set(DbValue v)
DbBinary
object that
represents the byte
array value indicated by the
DbValue
parameter. The DbValue object will be checked to see if it is null.
set
in class DbValue
v
- The DbValue
to be converted to a
byte
array. If it is null, the value will not be set.public void setValue(java.lang.String v)
DbBinary
object that
represents the byte
array value indicated by the
String
parameter.
setValue
in class DbValue
v
- The String
to be converted to a
byte
array.public java.lang.String toStringValue()
toStringValue
in class DbValue
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |