org.inxar.jenesis
Interface ScientificLiteral

All Superinterfaces:
Codeable, Expression, Literal

public interface ScientificLiteral
extends Literal

Literal subinterface for scientific floating point literals.


Method Summary
 int getExponent()
          Returns the exponent.
 int getPrecision()
          Returns the precision (numbers before the decimal point).
 int getScale()
          Returns the scale (numbers after the decimal point).
 
Methods inherited from interface org.inxar.jenesis.Literal
toObject
 
Methods inherited from interface org.inxar.jenesis.Expression
getType
 
Methods inherited from interface org.inxar.jenesis.Codeable
getComment, setComment, toCode, vm
 

Method Detail

getPrecision

public int getPrecision()
Returns the precision (numbers before the decimal point).

getScale

public int getScale()
Returns the scale (numbers after the decimal point).

getExponent

public int getExponent()
Returns the exponent.