com.ora.jsp.sql.value
Class BigDecimalValue

java.lang.Object
  |
  +--com.ora.jsp.sql.Value
        |
        +--com.ora.jsp.sql.value.BigDecimalValue

public class BigDecimalValue
extends Value

This class represents a BigDecimal value used by the SQL tags.

Version:
1.0
Author:
Hans Bergsten, Gefion software

Field Summary
private  java.math.BigDecimal value
           
 
Constructor Summary
BigDecimalValue(java.math.BigDecimal value)
           
 
Method Summary
 java.math.BigDecimal getBigDecimal()
           
 java.lang.String getString()
          This method must be implemented by all subclasses.
 
Methods inherited from class com.ora.jsp.sql.Value
getBoolean, getByte, getBytes, getDate, getDouble, getFloat, getInt, getLong, getObject, getShort, getTime, getTimestamp
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

value

private java.math.BigDecimal value
Constructor Detail

BigDecimalValue

public BigDecimalValue(java.math.BigDecimal value)
Method Detail

getBigDecimal

public java.math.BigDecimal getBigDecimal()
Overrides:
getBigDecimal in class Value

getString

public java.lang.String getString()
Description copied from class: Value
This method must be implemented by all subclasses. All data types can be converted to a String.
Overrides:
getString in class Value