| AddOperation |
Implements the operation "addition" for different kinds of operands.
|
| AndOperation |
Implements the logical "AND" operation.
|
| CompareOperation |
Abstract class with interface for compare operations (e.g., equals, less,
etc.).
|
| DivOperation |
Implements the operation "division" for different kinds of operands.
|
| EqualsOperation |
Implements the operation "equals" for different kinds of operands.
|
| GreaterEqualOperation |
Implements the operation "greater equals" for different kinds of operands.
|
| GreaterOperation |
Implements the operation "greater" for different kinds of operands.
|
| LessEqualOperation |
Implements the operation "less equal" for different kinds of operands.
|
| LessOperation |
Implements the operation "less than" for different kinds of operands.
|
| LogicalOperation |
Abstract class with interface for logical operations (AND, OR).
|
| ModOperation |
Implements the operation "modulo" for different kinds of operands.
|
| MultOperation |
Implements the operation "multiplication" for different kinds of operands.
|
| NotEqualOperation |
Implements the operation "not equals" for different kinds of operands.
|
| OrOperation |
Implements the logical "OR" operation.
|
| SubOperation |
Implements the operation "subtraction" for different kinds of operands.
|
| TermProductOperation |
An interface for term (+,-) and product (*,/,%) operations.
|