Package | Description |
---|---|
org.mariuszgromada.math.mxparser |
Modifier and Type | Method and Description |
---|---|
Constant |
Function.getConstant(int constantIndex)
Gets constant associated with the function expression.
|
Constant |
Expression.getConstant(int constantIndex)
Gets constant associated with the expression.
|
Constant |
Argument.getConstant(int constantIndex)
Gets constant associated with the argument expression.
|
Constant |
Function.getConstant(java.lang.String constantName)
Gets constant associated with the function expression.
|
Constant |
Expression.getConstant(java.lang.String constantName)
Gets constant associated with the expression.
|
Constant |
Argument.getConstant(java.lang.String constantName)
Gets constant associated with the argument expression.
|
Modifier and Type | Method and Description |
---|---|
void |
Function.addConstants(Constant... constants)
Adds constants (variadic parameters) to the function expression definition.
|
void |
Expression.addConstants(Constant... constants)
Adds constants (variadic parameters) to the expression definition.
|
void |
Argument.addConstants(Constant... constants)
Adds constants (variadic parameters) to the argument expression definition.
|
void |
Function.removeConstants(Constant... constants)
Removes first occurrences of the constants
associated with the function expression
|
void |
Expression.removeConstants(Constant... constants)
Removes first occurrences of the constants
associated with the expression
|
void |
Argument.removeConstants(Constant... constants)
Removes first occurrences of the constants
associated with the argument expression
|
Modifier and Type | Method and Description |
---|---|
void |
Function.addConstants(java.util.List<Constant> constantsList)
Adds constants to the function expression definition.
|
void |
Expression.addConstants(java.util.List<Constant> constantsList)
Adds constants to the expression definition.
|
void |
Argument.addConstants(java.util.List<Constant> constantsList)
Adds constants to the argument expression definition.
|