Uses of Class
com.japisoft.formula.node.EvaluateException

Packages that use EvaluateException
com.japisoft.formula   
com.japisoft.formula.node   
com.japisoft.formula.operator   
com.japisoft.formula.operator_hp.binary   
com.japisoft.formula.operator_hp.unary   
com.japisoft.formula.operator.binary   
com.japisoft.formula.operator.ternary   
com.japisoft.formula.operator.unary   
 

Uses of EvaluateException in com.japisoft.formula
 

Methods in com.japisoft.formula that throw EvaluateException
 AbstractNode Formula.parse()
          Parse the expression and return a node for evaluation.
 Variant Formula.evaluate()
          This method will evaluate the current expression.
 java.util.Enumeration Formula.getSymbolsFromExpression()
           
 

Uses of EvaluateException in com.japisoft.formula.node
 

Methods in com.japisoft.formula.node that throw EvaluateException
abstract  java.lang.Object AbstractNode.evaluate(NodeContext ctx)
           
 java.lang.Object BinaryOperatorNode.evaluate(NodeContext ctx)
           
 java.lang.Object FunctionNode.evaluate(NodeContext ctx)
           
 java.lang.Object GroupNode.evaluate(NodeContext ctx)
           
 java.lang.Object ListNode.evaluate(NodeContext ctx)
           
 java.lang.Object RootNode.evaluate(NodeContext ctx)
           
 java.lang.Object TernaryOperatorNode.evaluate(NodeContext ctx)
           
 java.lang.Object UnaryOperatorNode.evaluate(NodeContext ctx)
           
 java.lang.Object ValueNode.evaluate(NodeContext ctx)
           
 java.lang.Object ValueNodeHP.evaluate(NodeContext ctx)
           
 java.lang.Object VariableNode.evaluate(NodeContext ctx)
           
 

Uses of EvaluateException in com.japisoft.formula.operator
 

Methods in com.japisoft.formula.operator that throw EvaluateException
 java.lang.Object BinaryOperator.eval(OperatorContext context)
          Eval this expression and return the operation result
 java.lang.Object TernaryOperator.eval(OperatorContext context)
           
 java.lang.Object UnaryOperator.eval(OperatorContext context)
          Eval this expression and return the result
 java.lang.Object OperatorContext.getValue1()
           
 java.lang.Object OperatorContext.getValue2()
           
 java.lang.Object OperatorContext.getValue3()
           
 

Uses of EvaluateException in com.japisoft.formula.operator_hp.binary
 

Methods in com.japisoft.formula.operator_hp.binary that throw EvaluateException
 java.lang.Object ADDOperator.eval(OperatorContext context)
           
 java.lang.Object DIVOperator.eval(OperatorContext context)
           
 java.lang.Object GREATEQOperator.eval(OperatorContext context)
           
 java.lang.Object GREATOperator.eval(OperatorContext context)
           
 java.lang.Object LESSEQOperator.eval(OperatorContext context)
           
 java.lang.Object LESSOperator.eval(OperatorContext context)
           
 java.lang.Object MINUSOperator.eval(OperatorContext context)
           
 java.lang.Object MODOperator.eval(OperatorContext context)
           
 java.lang.Object MULOperator.eval(OperatorContext context)
           
 java.lang.Object POWEROperator.eval(OperatorContext context)
           
 

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

Methods in com.japisoft.formula.operator_hp.unary that throw EvaluateException
 java.lang.Object ABSOperator.eval(OperatorContext context)
           
 java.lang.Object MINUSOperator.eval(OperatorContext context)
           
 java.lang.Object PERCENTOperator.eval(OperatorContext context)
           
 

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

Methods in com.japisoft.formula.operator.binary that throw EvaluateException
 java.lang.Object ADDOperator.eval(OperatorContext context)
           
 java.lang.Object ANDOperator.eval(OperatorContext context)
           
 java.lang.Object ASSIGNOperator.eval(OperatorContext context)
           
 java.lang.Object DIVOperator.eval(OperatorContext context)
           
 java.lang.Object EQOperator.eval(OperatorContext context)
           
 java.lang.Object GREATEQOperator.eval(OperatorContext context)
           
 java.lang.Object GREATOperator.eval(OperatorContext context)
           
 java.lang.Object IFOperator.eval(OperatorContext context)
           
 java.lang.Object INOperator.eval(OperatorContext context)
           
 java.lang.Object LESSEQOperator.eval(OperatorContext context)
           
 java.lang.Object LESSOperator.eval(OperatorContext context)
           
 java.lang.Object MINUSOperator.eval(OperatorContext context)
           
 java.lang.Object MODOperator.eval(OperatorContext context)
           
 java.lang.Object MULOperator.eval(OperatorContext context)
           
 java.lang.Object NOTEQOperator.eval(OperatorContext context)
           
 java.lang.Object OROperator.eval(OperatorContext context)
           
 java.lang.Object POWEROperator.eval(OperatorContext context)
           
 java.lang.Object XOROperator.eval(OperatorContext context)
           
 

Uses of EvaluateException in com.japisoft.formula.operator.ternary
 

Methods in com.japisoft.formula.operator.ternary that throw EvaluateException
 java.lang.Object ELSEOperator.eval(OperatorContext context)
           
 

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

Methods in com.japisoft.formula.operator.unary that throw EvaluateException
 java.lang.Object ABSOperator.eval(OperatorContext context)
           
 java.lang.Object MINUSOperator.eval(OperatorContext context)
           
 java.lang.Object NOTOperator.eval(OperatorContext context)
           
 java.lang.Object PERCENTOperator.eval(OperatorContext context)