Package loci.poi.hssf.record.formula
Class GreaterThanPtg
java.lang.Object
loci.poi.hssf.record.formula.Ptg
loci.poi.hssf.record.formula.OperationPtg
loci.poi.hssf.record.formula.GreaterThanPtg
Greater than operator PTG ">"
- Author:
- Cameron Riley (criley at ekmail.com)
-
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
ConstructorsConstructorDescriptionConstructor.Constructor. -
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 Greater 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 SIZE- See Also:
-
sid
public static final byte sid- See Also:
-
-
Constructor Details
-
GreaterThanPtg
public GreaterThanPtg()Constructor. Creates new GreaterThanPtg -
GreaterThanPtg
Constructor. Create a new GreaterThanPtg.- 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 Greater 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
-