Package loci.poi.hssf.record.formula
Class ParenthesisPtg
java.lang.Object
loci.poi.hssf.record.formula.Ptg
loci.poi.hssf.record.formula.OperationPtg
loci.poi.hssf.record.formula.ParenthesisPtg
While formula tokens are stored in RPN order and thus do not need parenthesis for
precedence reasons, Parenthesis tokens ARE written to ensure that user entered
parenthesis are displayed as-is on reading back
Avik Sengupta <lists@aviksengupta.com>
Andrew C. Oliver (acoliver at apache dot org)
- Author:
- Jason Height (jheight at chariot dot net dot au)
-
Field Summary
FieldsFields inherited from class loci.poi.hssf.record.formula.OperationPtg
TYPE_BINARY, TYPE_FUNCTION, TYPE_UNARYFields inherited from class loci.poi.hssf.record.formula.Ptg
CLASS_ARRAY, CLASS_REF, CLASS_VALUE, ptgClass -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()byteintThe number of operands expected by the operationsintgetSize()intgetType()toFormulaString(String[] operands) returns a string representation of the operations the length of the input array should equal the number returned bytoFormulaString(Workbook book) return a string representation of this token alonevoidwriteBytes(byte[] array, int offset) write this Ptg to a byte arrayMethods inherited from class loci.poi.hssf.record.formula.Ptg
createParsedExpressionTokens, createPtg, getBytes, getPtgClass, serializePtgStack, setClass, toDebugString, toString
-
Field Details
-
sid
public static final byte sid- See Also:
-
-
Constructor Details
-
ParenthesisPtg
public ParenthesisPtg() -
ParenthesisPtg
-
-
Method Details
-
writeBytes
public void writeBytes(byte[] array, int offset) Description copied from class:Ptgwrite this Ptg to a byte array- Specified by:
writeBytesin classPtg
-
getSize
public int getSize() -
getType
public int getType()- Specified by:
getTypein classOperationPtg
-
getNumberOfOperands
public int getNumberOfOperands()Description copied from class:OperationPtgThe number of operands expected by the operations- Specified by:
getNumberOfOperandsin classOperationPtg
-
toFormulaString
Description copied from class:Ptgreturn a string representation of this token alone- Specified by:
toFormulaStringin classPtg
-
toFormulaString
Description copied from class:OperationPtgreturns a string representation of the operations the length of the input array should equal the number returned by- Specified by:
toFormulaStringin classOperationPtg- See Also:
-
getDefaultOperandClass
public byte getDefaultOperandClass()- Overrides:
getDefaultOperandClassin classOperationPtg
-
clone
-