FileDocCategorySizeDatePackage
BigDecimalValue.javaAPI DocExample568Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql.value

BigDecimalValue

public class BigDecimalValue extends com.ora.jsp.sql.Value
This class represents a BigDecimal value used by the SQL tags.
author
Hans Bergsten, Gefion software
version
1.0

Fields Summary
private BigDecimal
value
Constructors Summary
public BigDecimalValue(BigDecimal value)

        this.value = value;
    
Methods Summary
public java.math.BigDecimalgetBigDecimal()

        return value;
    
public java.lang.StringgetString()

        return value.toString();