Uses of Class
com.accountingenhancements.formula.FormulaFunction

Packages that use FormulaFunction
com.accountingenhancements.formula BETA 9/10/2006
The formula package is a string based interpreted scripting math and string manipulation language written in Java.
It's intended to perform math and/or string concatination based on basic code segments that are stored in databases and work with dynamically created variables.
In an effort to improve speed in loops where some variables are stable and other variables change, levels of volatility can be assigned to variables. 
 

Uses of FormulaFunction in com.accountingenhancements.formula
 

Subclasses of FormulaFunction in com.accountingenhancements.formula
 class FormulaFunction_DateAdd
           
 class FormulaFunction_DatePart
           
 class FormulaFunction_IIF
           
 class FormulaFunction_LCase
           
 class FormulaFunction_Left
           
 class FormulaFunction_Len
           
 class FormulaFunction_Mid
           
 class FormulaFunction_Right
           
 class FormulaFunction_UCase
           
 

Fields in com.accountingenhancements.formula declared as FormulaFunction
protected  FormulaFunction FormulaVariable.formulaFunction
          If this is TYPE_FUNCTION then this is the function that was created when first solving this variable.
 

Methods in com.accountingenhancements.formula that return FormulaFunction
 FormulaFunction FormulaFunctionList.getFunction(FormulaVariable functionVariable)
          This method will instantiate and return the correct function based on the TYPE_FUNCTION FormulaVariable handed to this routine.
 FormulaFunction FormulaFunctionList.getFunction(java.lang.String function)
           
 FormulaFunction FormulaFunctionList.getFunction(java.lang.String function, int level)
           
 

Methods in com.accountingenhancements.formula that return types with arguments of type FormulaFunction
 java.lang.Class<? extends FormulaFunction> FormulaFunctionList.getFunctionClass(java.lang.String functionName)
           
 

Method parameters in com.accountingenhancements.formula with type arguments of type FormulaFunction
 void Formula.add(java.lang.Class<? extends FormulaFunction> functionClass)
          Add a class to the FormulaFunction list.
 void FormulaFunctionList.addFunction(java.lang.Class<? extends FormulaFunction> functionClass)