Package loci.poi.hssf.record.formula
Class AttrPtg
java.lang.Object
loci.poi.hssf.record.formula.Ptg
loci.poi.hssf.record.formula.OperationPtg
loci.poi.hssf.record.formula.AttrPtg
"Special Attributes"
This seems to be a Misc Stuff and Junk record. One function it serves is
in SUM functions (i.e. SUM(A1:A3) causes an area PTG then an ATTR with the SUM option set)
- Author:
- andy, 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()shortgetData()byteintThe number of operands expected by the operationsbyteintgetSize()intgetType()booleanisBaxcel()booleanisGoto()booleanbooleanbooleanbooleanisSpace()booleanisSum()voidsetData(short data) voidsetGoto(boolean isGoto) Flags this ptg as a goto/jumpvoidsetOptimizedIf(boolean bif) voidsetOptions(byte options) voidsetSum(boolean bsum) 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 alonetoString()Overridden toString method to ensure object hash is not printed.voidwriteBytes(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
-
Field Details
-
sid
public static final byte sid- See Also:
-
-
Constructor Details
-
AttrPtg
public AttrPtg() -
AttrPtg
-
-
Method Details
-
setOptions
public void setOptions(byte options) -
getOptions
public byte getOptions() -
isSemiVolatile
public boolean isSemiVolatile() -
isOptimizedIf
public boolean isOptimizedIf() -
isOptimizedChoose
public boolean isOptimizedChoose() -
isGoto
public boolean isGoto() -
isSum
public boolean isSum() -
setSum
public void setSum(boolean bsum) -
setOptimizedIf
public void setOptimizedIf(boolean bif) -
setGoto
public void setGoto(boolean isGoto) Flags this ptg as a goto/jump- Parameters:
isGoto-
-
isBaxcel
public boolean isBaxcel() -
isSpace
public boolean isSpace() -
setData
public void setData(short data) -
getData
public short getData() -
toString
Description copied from class:PtgOverridden toString method to ensure object hash is not printed. This helps get rid of gratuitous diffs when comparing two dumps Subclasses may output more relevant information by overriding this method -
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() -
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:
-
getNumberOfOperands
public int getNumberOfOperands()Description copied from class:OperationPtgThe number of operands expected by the operations- Specified by:
getNumberOfOperandsin classOperationPtg
-
getType
public int getType()- Specified by:
getTypein classOperationPtg
-
toFormulaString
Description copied from class:Ptgreturn a string representation of this token alone- Specified by:
toFormulaStringin classPtg
-
getDefaultOperandClass
public byte getDefaultOperandClass()- Overrides:
getDefaultOperandClassin classOperationPtg
-
clone
-