Uses of Interface
csheets.core.formula.Operator

Packages that use Operator
csheets.core.formula Provides classes for representing formulas. 
csheets.core.formula.lang Provides the operators, functions and references supported by the formula language. 
 

Uses of Operator in csheets.core.formula
 

Classes in csheets.core.formula with type parameters of type Operator
 class Operation<O extends Operator>
          An operation in a formula.
 

Subinterfaces of Operator in csheets.core.formula
 interface BinaryOperator
          A binary operator in a formula.
 interface UnaryOperator
          A unary operator in a formula.
 

Fields in csheets.core.formula declared as Operator
protected  O Operation.operator
          The operator
 

Uses of Operator in csheets.core.formula.lang
 

Classes in csheets.core.formula.lang that implement Operator
 class Adder
          An adder.
 class Concatenator
          A concatenator of strings.
 class Divider
          A divider.
 class Equal
          A relational equal operator.
 class Exponentiator
          An exponential operator for raising a numeric operand to the power of another.
 class GreaterThan
          A relational greater-than operator.
 class GreaterThanOrEqual
          A relational greater-than-oe-equal operator.
 class LessThan
          A relational less-than operator.
 class LessThanOrEqual
          A relational less-than-or-equal operator.
 class Multiplier
          A multiplier.
 class Negator
          A negator (negative sign).
 class NotEqual
          A relational not-equal operator.
 class Percent
          A percent operator (division by 100).
 class RangeReference
          A reference to a range of cells in a spreadsheet.
 class RelationalOperator
          A relational operator.
 class Subtracter
          A subtracter of a numeric operand from another.