Uses of Interface
com.japisoft.formula.operator.unary.UnaryOperator

Packages that use UnaryOperator
com.japisoft.formula.node   
com.japisoft.formula.operator   
com.japisoft.formula.operator_hp.unary   
com.japisoft.formula.operator.unary   
 

Uses of UnaryOperator in com.japisoft.formula.node
 

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

Uses of UnaryOperator in com.japisoft.formula.operator
 

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

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

Uses of UnaryOperator in com.japisoft.formula.operator_hp.unary
 

Classes in com.japisoft.formula.operator_hp.unary that implement UnaryOperator
 class MINUSOperator
          -A : in high precision mode
 class PERCENTOperator
          a% = a / 100 in high precision mode
 

Uses of UnaryOperator in com.japisoft.formula.operator.unary
 

Classes in com.japisoft.formula.operator.unary that implement UnaryOperator
 class NOTOperator