net.sf.jsqlparser.expression
Class DoubleValue

java.lang.Object
  extended by net.sf.jsqlparser.expression.DoubleValue
All Implemented Interfaces:
Expression

public class DoubleValue
extends java.lang.Object
implements Expression

Every number with a point or a exponential format is a DoubleValue


Field Summary
private  java.lang.String stringValue
           
private  double value
           
 
Constructor Summary
DoubleValue(java.lang.String value)
           
 
Method Summary
 void accept(ExpressionVisitor expressionVisitor)
           
 double getValue()
           
 void setValue(double d)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

value

private double value

stringValue

private java.lang.String stringValue
Constructor Detail

DoubleValue

public DoubleValue(java.lang.String value)
Method Detail

accept

public void accept(ExpressionVisitor expressionVisitor)
Specified by:
accept in interface Expression

getValue

public double getValue()

setValue

public void setValue(double d)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object