Class NumberNode
java.lang.Object
com.grapecity.documents.excel.expressions.SyntaxNode
com.grapecity.documents.excel.expressions.TerminalNode
com.grapecity.documents.excel.expressions.ConstNode
com.grapecity.documents.excel.expressions.NumberNode
Represents a number node in the syntax tree.
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.grapecity.documents.excel.expressions.TerminalNode
getChildren
-
Constructor Details
-
NumberNode
public NumberNode(double value) Creates aNumberNodefromdoublevalue.- Parameters:
value- The value of the newNumberNode.
-
-
Method Details
-
getValue
public final double getValue()The value of this node. -
setValue
public final void setValue(double value) The value of this node.
-