jxl.biff.formula
class: GreaterEqual [javadoc |
source]
java.lang.Object
jxl.biff.formula.ParseItem
jxl.biff.formula.Operator
jxl.biff.formula.BinaryOperator
jxl.biff.formula.GreaterEqual
All Implemented Interfaces:
ParsedThing
A cell reference in a formula
| Methods from jxl.biff.formula.BinaryOperator: |
|---|
|
adjustRelativeCellReferences, columnInserted, columnRemoved, getBytes, getOperands, getString, getSymbol, getToken, handleImportedCellReferences, read, rowInserted, rowRemoved |
| Methods from jxl.biff.formula.ParseItem: |
|---|
|
adjustRelativeCellReferences, columnInserted, columnRemoved, getBytes, getString, handleImportedCellReferences, isValid, isVolatile, rowInserted, rowRemoved, setAlternateCode, setInvalid, setParent, setVolatile, useAlternateCode |
| Method from jxl.biff.formula.GreaterEqual Detail: |
int getPrecedence() {
return 5;
}
Gets the precedence for this operator. Operator precedents run from
1 to 5, one being the highest, 5 being the lowest |
public String getSymbol() {
return " >=";
}
|
Token getToken() {
return Token.GREATER_EQUAL;
}
Abstract method which gets the token for this operator |