public class DbDecimal extends DbNumber
DbDecimal
class wraps a value of the type BigDecimal
in an object. An object of the type DbDecimal
contains a
single field whose type is BigDecimal
.
In addition, this class provides several methods for converting
a DbDecimal
to a String
or other number types,
as well as other constants and methods useed when dealing
with a DbDecimal
.
Modifier and Type | Field and Description |
---|---|
java.math.BigDecimal |
value
Deprecated.
|
BIGINT_DESC, bNull, CHAR_DESC, CURRENCY_DESC, DATE_DESC, desc, DOUBLE_DESC, INTEGER_DESC, TIME_DESC
Constructor and Description |
---|
DbDecimal()
Constructs an uninitialized
DbDecimal . |
DbDecimal(DbColDesc desc)
Constructs an uninitialized
DbDecimal . |
Modifier and Type | Method and Description |
---|---|
byte |
byteValue()
Returns the value of this
DbDecimal as a
byte . |
java.lang.Object |
clone()
Creates a clone of this
DbDecimal object. |
double |
doubleValue()
Returns the value of this
DbDecimal as a
double . |
boolean |
equals(DbNumber v)
Compares this object to the specified object.
|
float |
floatValue()
Returns the value of this
DbDecimal as a
float . |
java.math.BigDecimal |
get()
Returns the value of this
DbDecimal as a
BigDecimal value. |
int |
intValue()
Returns the value of this
DbDecimal as an
int . |
long |
longValue()
Returns the value of this
DbDecimal as a
long value. |
void |
set(java.math.BigDecimal v)
Sets a newly allocated
DbDecimal object that
represents the specified BigDecimal argument. |
void |
set(JRHierarchicalDataset hds,
int col)
Sets a newly allocated
DbDecimal object that
represents the BigDecimal value indicated by the
JRHierarchicalDataset parameter and an index of the column. |
void |
set(java.sql.ResultSet rs,
int col)
Sets a newly allocated
DbDecimal object that
represents the BigDecimal value indicated by the
ResultSet parameter and an index of the column. |
void |
setValue(DbNumber v)
Sets a newly allocated
DbDecimal object that
represents the BigDecimal value indicated by the
DbNumber parameter. |
void |
setValue(java.lang.String v)
Sets a newly allocated
DbDecimal object that
represents the BigDecimal value indicated by the
String parameter. |
short |
shortValue()
Returns the value of this
DbDecimal as a
short . |
java.lang.String |
toString()
Returns a
String object representing this
DbDecimal 's value. |
java.lang.String |
toStringValue() |
compareTo, compareTo, compareTo, equals, getColDesc, getDataTimeZone, getPrecision, getScale, getSqlType, isCurrency, isNull, makeDbValue, setColDesc, setfoo, setNull, setValue
public java.math.BigDecimal value
get
and set
to access it instead of accessing it directly.public DbDecimal()
DbDecimal
. This
DbDecimal
object is mutable until a nonzero value
and the description of the column are set.public DbDecimal(DbColDesc desc)
DbDecimal
. This
DbDecimal
object is mutable until the value is set.desc
- The value to be represented by the
DbColDesc
object.public java.math.BigDecimal get()
DbDecimal
as a
BigDecimal
value.public void set(java.math.BigDecimal v)
DbDecimal
object that
represents the specified BigDecimal
argument.
As for scale, uses BigDecimal.ROUND_HALF_UP as default.v
- The BigDecimal value to be represented by the
DbDecimal
object.public void set(java.sql.ResultSet rs, int col) throws java.sql.SQLException
DbDecimal
object that
represents the BigDecimal
value indicated by the
ResultSet
parameter and an index of the column.public void set(JRHierarchicalDataset hds, int col) throws java.sql.SQLException
DbDecimal
object that
represents the BigDecimal
value indicated by the
JRHierarchicalDataset
parameter and an index of the column.public java.lang.String toString()
String
object representing this
DbDecimal
's value. The value is converted to signed
decimal representation and returned as a string.
If the value is null, it returns "NULL".public java.lang.Object clone()
DbDecimal
object.public boolean equals(DbNumber v)
true
if and only if the argument is not
null
but a DbDecimal
object that
contains the same DbNumber
value as this object.public byte byteValue()
DbDecimal
as a
byte
.public short shortValue()
DbDecimal
as a
short
.shortValue
in class DbNumber
public int intValue()
DbDecimal
as an
int
.public long longValue()
DbDecimal
as a
long
value.public float floatValue()
DbDecimal
as a
float
.floatValue
in class DbNumber
public double doubleValue()
DbDecimal
as a
double
.doubleValue
in class DbNumber
public void setValue(DbNumber v)
DbDecimal
object that
represents the BigDecimal
value indicated by the
DbNumber
parameter. The DbNumber object will be checked to see if it is null.public void setValue(java.lang.String v)
DbDecimal
object that
represents the BigDecimal
value indicated by the
String
parameter. The string is converted to a
long
value in exactly the manner used by constructor
method for radix 10.public java.lang.String toStringValue()
toStringValue
in class DbValue