Uses of Interface
fr.expression4j.basic.Operator

Packages that use Operator
fr.expression4j.basic.impl   
fr.expression4j.core   
fr.expression4j.core.impl   
fr.expression4j.factory   
fr.expression4j.util   
 

Uses of Operator in fr.expression4j.basic.impl
 

Classes in fr.expression4j.basic.impl that implement Operator
 class GenericOperator
           
 class OperatorDivide
          Deprecated.  
 class OperatorMinus
          Deprecated.  
 class OperatorMultiply
          Deprecated.  
 class OperatorPlus
          Deprecated.  
 class OperatorPow
          Deprecated.  
 class OperatorUnaryMinus
          Deprecated.  
 class OperatorUnaryPlus
          Deprecated.  
 

Uses of Operator in fr.expression4j.core
 

Methods in fr.expression4j.core that return Operator
 Operator ExpressionModel.getOperator(java.lang.String name)
          Get the named operator.
 

Methods in fr.expression4j.core with parameters of type Operator
 void ExpressionModel.addBinaryOperator(Operator operator, int priority)
          Add a binary operator
 void ExpressionModel.addUnaryOperator(Operator operator)
          Add unary operator to the model
 int ExpressionModel.getOperatorLevel(Operator operator)
          Get the level associated to a given operator.
 

Uses of Operator in fr.expression4j.core.impl
 

Methods in fr.expression4j.core.impl that return Operator
 Operator ExpressionModelImpl.getOperator(java.lang.String name)
           
 

Methods in fr.expression4j.core.impl with parameters of type Operator
 void ExpressionModelImpl.addBinaryOperator(Operator operator, int priority)
           
 void ExpressionModelImpl.addUnaryOperator(Operator operator)
           
 int ExpressionModelImpl.getOperatorLevel(Operator operator)
           
 

Uses of Operator in fr.expression4j.factory
 

Methods in fr.expression4j.factory that return Operator
static Operator OperatorFactory.createOperator(java.lang.String name, java.lang.String symbol, boolean isUnary)
          Create an operator.
static Operator OperatorFactory.getOperator(java.lang.String name)
          get the given operator name
 

Methods in fr.expression4j.factory with parameters of type Operator
static void OperatorFactory.addOperator(Operator operator)
           
 

Uses of Operator in fr.expression4j.util
 

Methods in fr.expression4j.util that return Operator
 Operator StringElement.getOperator()
           
 

Constructors in fr.expression4j.util with parameters of type Operator
StringElement(int type, java.lang.String value, Operator operator)