Uses of Interface
com.japisoft.formula.operator.binary.BinaryOperator

Packages that use BinaryOperator
com.japisoft.formula.node   
com.japisoft.formula.operator   
com.japisoft.formula.operator.binary   
 

Uses of BinaryOperator in com.japisoft.formula.node
 

Methods in com.japisoft.formula.node with parameters of type BinaryOperator
 void BinaryOperatorNode.setOperator(java.lang.String name, BinaryOperator operator)
           
 

Uses of BinaryOperator in com.japisoft.formula.operator
 

Methods in com.japisoft.formula.operator that return BinaryOperator
 BinaryOperator OperatorFactory.getBinaryOperator(java.lang.String name)
           
 BinaryOperator OperatorFactoryImpl.getBinaryOperator(java.lang.String name)
           
 

Methods in com.japisoft.formula.operator with parameters of type BinaryOperator
 void OperatorFactory.setBinaryOperator(java.lang.String name, BinaryOperator operator)
          Replace an operator by this one, if the operator is null the operator will be removed
 void OperatorFactoryImpl.setBinaryOperator(java.lang.String name, BinaryOperator operator)
          Replace an operator by this one, if the operator is null the operator will be removed
 

Uses of BinaryOperator in com.japisoft.formula.operator.binary
 

Classes in com.japisoft.formula.operator.binary that implement BinaryOperator
 class ADDOperator
          Add operator : A+B
 class ANDOperator
          A AND B
 class ASSIGNOperator
          Assignement : A=1
 class DIVOperator
          Div operator : A/B
 class EQOperator
          Equal operator : A==B
 class GREATEQOperator
          Great operator : A >= B
 class GREATOperator
          Great operator : A > B
 class IFOperator
          If Then operator : IF A then B
 class INOperator
          a in b : Check if the element 'a' is inside the list 'b'
 class LESSEQOperator
          Less operator : A <= B
 class LESSOperator
          Less operator : A < B
 class MINUSOperator
          Minus binary operator : A-B
 class MODOperator
          Modulo operator : A%B
 class MULOperator
          Multiply operator : A*B
 class NOTEQOperator
          Not Equal operator : A!
 class OROperator
          A OR B
 class POWEROperator
          Power operator : A^B
 class XOROperator
          A ~ B => A xor B