Package org.apache.poi.ss.formula.token
Class ErrorRefNode
- java.lang.Object
-
- org.apache.poi.ss.formula.token.RefNode
-
- org.apache.poi.ss.formula.token.ErrorRefNode
-
- All Implemented Interfaces:
FormulaTokenNode
public class ErrorRefNode extends RefNode
-
-
Field Summary
-
Fields inherited from class org.apache.poi.ss.formula.token.RefNode
externalRef
-
-
Constructor Summary
Constructors Constructor Description ErrorRefNode(ErrorNode errorNode, ExternalRefNode externalRef)
-
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.ErrorNode
getErrorNode()
String
toString()
-
Methods inherited from class org.apache.poi.ss.formula.token.RefNode
add, getExternalRef, getHash, getNodeId, getType, hasOperands, isOp, normalize, setExternalRef, visitChildren
-
-
-
-
Constructor Detail
-
ErrorRefNode
public ErrorRefNode(ErrorNode errorNode, ExternalRefNode externalRef)
-
-
Method Detail
-
getErrorNode
public ErrorNode getErrorNode()
-
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.- Specified by:
accept
in interfaceFormulaTokenNode
- Overrides:
accept
in classRefNode
-
-