Package | Description |
---|---|
org.mariuszgromada.math.mxparser |
Modifier and Type | Method and Description |
---|---|
Function |
Function.getFunction(int functionIndex)
Gets function associated with the function expression.
|
Function |
Expression.getFunction(int functionIndex)
Gets function associated with the expression.
|
Function |
Argument.getFunction(int functionIndex)
Gets function associated with the argument expression.
|
Function |
Function.getFunction(java.lang.String functionName)
Gets function associated with the function expression.
|
Function |
Expression.getFunction(java.lang.String functionName)
Gets function associated with the expression.
|
Function |
Argument.getFunction(java.lang.String functionName)
Gets function associated with the argument expression.
|
Modifier and Type | Method and Description |
---|---|
void |
Function.addFunctions(Function... functions)
Adds functions (variadic parameters) to the function expression definition.
|
void |
Expression.addFunctions(Function... functions)
Adds functions (variadic parameters) to the expression definition.
|
void |
Argument.addFunctions(Function... functions)
Adds functions (variadic parameters) to the argument expression definition.
|
void |
Function.removeFunctions(Function... functions)
Removes first occurrences of the functions
associated with the function expression.
|
void |
Expression.removeFunctions(Function... functions)
Removes first occurrences of the functions
associated with the expression.
|
void |
Argument.removeFunctions(Function... functions)
Removes first occurrences of the functions
associated with the argument expression.
|