Package com.bestcode.mathparser

Interface Summary
IFunction IFunction interface represents a user defined callback function that takes n parameters.
IMathParser IMathParser interface provides access to an implementation of the math parser algorithm.
IParameter IParameter is used to supply a parameter value for a user defined function.
IVariableResolver IVariableResolver is implemented by the user and used in IMathParser.setVariableResolver(IVariableResolver) to enable the Math Parser allow variables that are not defined before parse time.
 

Class Summary
MathParserFactory MathParserFactory is used to create an implementation of IMathParser interface.
OneParamFunc OneParamFunc abstract class represents a user defined callback function that takes one parameter.
TwoParamFunc TwoParamFunc abstract class represents a user defined callback function that takes two parameters.
 

Exception Summary
ParserException ParserException is thrown by some methods of IMathParser interface if an expression cannot be parsed.