Package org.apache.poi.ss.formula.token
Class ColonNode
- java.lang.Object
-
- org.apache.poi.ss.formula.token.OpNode
-
- org.apache.poi.ss.formula.token.ColonNode
-
- All Implemented Interfaces:
FormulaTokenNode
public class ColonNode extends OpNode
-
-
Constructor Summary
Constructors Constructor Description ColonNode(FormulaTokenNode left, FormulaTokenNode right)
-
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.boolean
add(FormulaTokenNode child)
int
getFlag()
NodeId
getNodeId()
String
getOp()
-
Methods inherited from class org.apache.poi.ss.formula.token.OpNode
getLeft, getRight, getType, hasOperands, isOp, normalize, setLeftOp, setRightOp, toExternalRef, toString, visitChildren
-
-
-
-
Constructor Detail
-
ColonNode
public ColonNode(FormulaTokenNode left, FormulaTokenNode right)
-
-
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.
-
add
public boolean add(FormulaTokenNode child)
- Specified by:
add
in interfaceFormulaTokenNode
- Overrides:
add
in classOpNode
-
-