Package org.apache.poi.ss.formula.ptg
Class GreaterThanPtg
- java.lang.Object
-
- org.apache.poi.ss.formula.ptg.Ptg
-
- org.apache.poi.ss.formula.ptg.OperationPtg
-
- org.apache.poi.ss.formula.ptg.ValueOperatorPtg
-
- org.apache.poi.ss.formula.ptg.GreaterThanPtg
-
public final class GreaterThanPtg extends ValueOperatorPtg
Greater than operator PTG ">"
-
-
Field Summary
Fields Modifier and Type Field Description static ValueOperatorPtg
instance
static byte
sid
-
Fields inherited from class org.apache.poi.ss.formula.ptg.OperationPtg
TYPE_BINARY, TYPE_FUNCTION, TYPE_UNARY
-
Fields inherited from class org.apache.poi.ss.formula.ptg.Ptg
CLASS_ARRAY, CLASS_REF, CLASS_VALUE, EMPTY_PTG_ARRAY
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getNumberOfOperands()
Get the number of operands for the Less than operatorjava.lang.String
toFormulaString(java.lang.String[] operands)
Implementation of method from OperationsPtg-
Methods inherited from class org.apache.poi.ss.formula.ptg.ValueOperatorPtg
getDefaultOperandClass, getSize, isBaseToken, toFormulaString, write
-
Methods inherited from class org.apache.poi.ss.formula.ptg.Ptg
createPtg, doesFormulaReferToDeletedCell, getEncodedSize, getEncodedSizeWithoutArrayData, getPtgClass, getRVAType, readTokens, serializePtgs, setClass, toString
-
-
-
-
Field Detail
-
sid
public static final byte sid
- See Also:
- Constant Field Values
-
instance
public static final ValueOperatorPtg instance
-
-
Method Detail
-
getNumberOfOperands
public int getNumberOfOperands()
Get the number of operands for the Less than operator- Specified by:
getNumberOfOperands
in classOperationPtg
- Returns:
- int the number of operands
-
toFormulaString
public java.lang.String toFormulaString(java.lang.String[] operands)
Implementation of method from OperationsPtg- Specified by:
toFormulaString
in classOperationPtg
- Parameters:
operands
- a String array of operands- Returns:
- String the Formula as a String
- See Also:
OperationPtg.getNumberOfOperands()
-
-