Package loci.poi.hssf.record.formula
Class LessThanPtg
java.lang.Object
loci.poi.hssf.record.formula.Ptg
loci.poi.hssf.record.formula.OperationPtg
loci.poi.hssf.record.formula.LessThanPtg
Less than operator PTG "<". The SID is taken from the
Openoffice.orgs Documentation of the Excel File Format,
Table 3.5.7
- Author:
- Cameron Riley (criley at ekmail.com)
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final bytethe sid for the less than operator as hexstatic final intthe size of the PtgFields 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()Implementation of clone method from ObjectbyteGet the default operands class valueintGet the number of operands for the Less than operatorintgetSize()Get the size of the sidintgetType()Get the type of PTG for Less ThantoFormulaString(String[] operands) Implementation of method from OperationsPtgtoFormulaString(Workbook book) Implementation of method from PtgvoidwriteBytes(byte[] array, int offset) Write the sid to an 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 SIZEthe size of the Ptg- See Also:
-
sid
public static final byte sidthe sid for the less than operator as hex- See Also:
-
-
Constructor Details
-
LessThanPtg
public LessThanPtg()Constructor. Creates new LessThanPtg -
LessThanPtg
Constructor. Create a new LessThanPtg.- Parameters:
in- the RecordInputstream to read the record from
-
-
Method Details
-
writeBytes
public void writeBytes(byte[] array, int offset) Write the sid to an array- Specified by:
writeBytesin classPtg- Parameters:
array- the array of bytes to write the sid tooffset- the offset to add the sid to
-
getSize
public int getSize()Get the size of the sid -
getType
public int getType()Get the type of PTG for Less Than- Specified by:
getTypein classOperationPtg- Returns:
- int the identifier for the type
-
getNumberOfOperands
public int getNumberOfOperands()Get the number of operands for the Less than operator- Specified by:
getNumberOfOperandsin classOperationPtg- Returns:
- int the number of operands
-
toFormulaString
Implementation of method from Ptg- Specified by:
toFormulaStringin classPtg- Parameters:
book- the Sheet References
-
toFormulaString
Implementation of method from OperationsPtg- Specified by:
toFormulaStringin classOperationPtg- Parameters:
operands- a String array of operands- Returns:
- String the Formula as a String
- See Also:
-
getDefaultOperandClass
public byte getDefaultOperandClass()Get the default operands class value- Overrides:
getDefaultOperandClassin classOperationPtg- Returns:
- byte the Ptg Class Value as a byte from the Ptg Parent object
-
clone
Implementation of clone method from Object
-