Uses of Class
org.mariuszgromada.math.mxparser.Constant
Packages that use Constant
-
Uses of Constant in org.mariuszgromada.math.mxparser
Methods in org.mariuszgromada.math.mxparser that return ConstantModifier and TypeMethodDescriptionConstant.cloneForThreadSafe()Creates a completely independent 1-1 clone that can be safely used by a separate thread.Argument.getConstant(int constantIndex) Gets constant associated with the argument expression.Argument.getConstant(String constantName) Gets constant associated with the argument expression.Expression.getConstant(int constantIndex) Gets constant associated with the expression.Expression.getConstant(String constantName) Gets constant associated with the expression.Function.getConstant(int constantIndex) Gets constant associated with the function expression.Function.getConstant(String constantName) Gets constant associated with the function expression.Methods in org.mariuszgromada.math.mxparser with parameters of type ConstantModifier and TypeMethodDescriptionvoidArgument.addConstants(Constant... constants) Adds constants (variadic parameters) to the argument expression definition.voidExpression.addConstants(Constant... constants) Adds constants (variadic parameters) to the expression definition.voidFunction.addConstants(Constant... constants) Adds constants (variadic parameters) to the function expression definition.voidArgument.removeConstants(Constant... constants) Removes first occurrences of the constants associated with the argument expressionvoidExpression.removeConstants(Constant... constants) Removes first occurrences of the constants associated with the expressionvoidFunction.removeConstants(Constant... constants) Removes first occurrences of the constants associated with the function expressionMethod parameters in org.mariuszgromada.math.mxparser with type arguments of type ConstantModifier and TypeMethodDescriptionvoidArgument.addConstants(List<Constant> constantsList) Adds constants to the argument expression definition.voidExpression.addConstants(List<Constant> constantsList) Adds constants to the expression definition.voidFunction.addConstants(List<Constant> constantsList) Adds constants to the function expression definition.