Package loci.poi.hssf.record.formula
Class StringPtg
java.lang.Object
loci.poi.hssf.record.formula.Ptg
loci.poi.hssf.record.formula.StringPtg
Number
Stores a String value in a formula value stored in the format <length 2 bytes>char[]
- Author:
- Werner Froidevaux, Jason Height (jheight at chariot dot net dot au), Bernard Chesnoy
-
Field Summary
FieldsFields inherited from class loci.poi.hssf.record.formula.Ptg
CLASS_ARRAY, CLASS_REF, CLASS_VALUE, ptgClass -
Constructor Summary
ConstructorsConstructorDescriptionCreate a StringPtg from a string representation of the number Number format is not checked, it is expected to be validated in the parser that calls this method.Create a StringPtg from a byte array read from disk -
Method Summary
Modifier and TypeMethodDescriptionclone()byteintgetSize()getValue()toFormulaString(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
-
SIZE
public static final int SIZE- See Also:
-
sid
public static final byte sid- See Also:
-
-
Constructor Details
-
StringPtg
Create a StringPtg from a byte array read from disk -
StringPtg
Create a StringPtg from a string representation of the number Number format is not checked, it is expected to be validated in the parser that calls this method.- Parameters:
value- : String representation of a floating point number
-
-
Method Details
-
getValue
-
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:Ptgreturn a string representation of this token alone- Specified by:
toFormulaStringin classPtg
-
getDefaultOperandClass
public byte getDefaultOperandClass()- Specified by:
getDefaultOperandClassin classPtg
-
clone
-