See: Description
Class | Description |
---|---|
Adder |
An adder.
|
And |
A function that returns true if and only if all of its arguments are true.
|
Attribution |
The attribution operator := (exclusive for the SignNumber language).
|
Average |
A function that returns the numeric average of its arguments.
|
CellReference |
A reference to a cell in a spreadsheet.
|
Concatenator |
A concatenator of strings.
|
Count |
A function that counts those of its arguments that yield numeric values.
|
Divider |
A divider.
|
Do |
A function that emulates a looping statement, where each cell in a given
range that satisfy a given condition, or each corresponding cell in
another range, are passed to a function.
|
Dowhile |
A function that implements a loop statement where the first condition was the
stop argument and the next arguments are the execution statements
|
DowhileTest |
Class that will test the dowhile function
|
Equal |
A relational equal operator.
|
Eval |
Class for eval expressions
|
EvalTest |
Class that will test the eval function
|
Exponentiator |
An exponential operator for raising a numeric operand to the power of another.
|
Factorial |
A function that returns the factorial of its argument.
|
False |
A function that returns the boolean value false.
|
GreaterThan |
A relational greater-than operator.
|
GreaterThanOrEqual |
A relational greater-than-oe-equal operator.
|
If |
A function that emulates the if-then-else statement.
|
Language |
A factory for creating certain types of language elements.
|
LessThan |
A relational less-than operator.
|
LessThanOrEqual |
A relational less-than-or-equal operator.
|
Multiplier |
A multiplier.
|
Negator |
A negator (negative sign).
|
Not |
A function that returns the boolean opposite of its argument.
|
NotEqual |
A relational not-equal operator.
|
NumericFunction |
A numeric function that invokes a method object.
|
Or |
A function that returns true if any of its arguments are true.
|
Percent |
A percent operator (division by 100).
|
RangeReference |
A reference to a range of cells in a spreadsheet.
|
ReferenceOperation |
A binary reference operation in a formula.
|
RelationalOperator |
A relational operator.
|
RelationalOperatorImpl |
This class is a concrete RelationalOperatior to allow operations with :=
|
Subtracter |
A subtracter of a numeric operand from another.
|
Sum |
A function that returns the numeric sum of its arguments.
|
True |
A function that returns the boolean value true.
|
Whiledo |
A function that implements a loop statement where the first condition was the
stop argument and the next arguments are the execution statements
|
WhiledoTest |
Class that will test the whiledo function
|
Exception | Description |
---|---|
DivisionByZeroException |
An exception that is thrown when a division by zero is evaluated.
|
UnknownElementException |
An exception that is thrown if an unknown language element is requested.
|
Language
, for creating certain types of
language elements is also provided.