Package org.apache.poi.ss.formula.token
Class SubtractNode
- java.lang.Object
-
- org.apache.poi.ss.formula.token.OpNode
-
- org.apache.poi.ss.formula.token.SubtractNode
-
- All Implemented Interfaces:
FormulaTokenNode
public class SubtractNode extends OpNode
-
-
Constructor Summary
Constructors Constructor Description SubtractNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> R
accept(TokenNodeVisitor<R> visitor)
Use the given [visitor] to visit this node.int
getFlag()
NodeId
getNodeId()
String
getOp()
-
Methods inherited from class org.apache.poi.ss.formula.token.OpNode
add, getLeft, getRight, getType, hasOperands, isOp, normalize, setLeftOp, setRightOp, toExternalRef, toString, visitChildren
-
-
-
-
Method Detail
-
getNodeId
public NodeId getNodeId()
-
accept
public <R> R accept(TokenNodeVisitor<R> visitor)
Description copied from interface:FormulaTokenNode
Use the given [visitor] to visit this node. Return the value returned by the visitor as a result of visiting this node.
-
-