public class MulFunction extends FunctionNode
GroupingExpression
. It evaluates to a number that equals the result
of multiplying the results of all arguments together in the order they were given to the constructor.Modifier | Constructor and Description |
---|---|
|
MulFunction(GroupingExpression arg1,
GroupingExpression arg2,
GroupingExpression... argN)
Constructs a new instance of this class.
|
private |
MulFunction(List<GroupingExpression> args) |
Modifier and Type | Method and Description |
---|---|
static MulFunction |
newInstance(List<GroupingExpression> args)
Constructs a new instance of this class from a list of arguments.
|
asList, asList, asList, getArg, getNumArgs, iterator, resolveLevel, visit
asImage, asString, getLevel, setLabel
getLabel, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
forEach, spliterator
public MulFunction(GroupingExpression arg1, GroupingExpression arg2, GroupingExpression... argN)
arg1
- The first compulsory argument, must evaluate to a number.arg2
- The second compulsory argument, must evaluate to a number.argN
- The optional arguments, must evaluate to a number.private MulFunction(List<GroupingExpression> args)
public static MulFunction newInstance(List<GroupingExpression> args)
args
- The arguments to pass to the constructor.IllegalArgumentException
- Thrown if the number of arguments is less than 2.Copyright © 2017. All rights reserved.