Package org.moeaframework.util.tree
Class LessThan
java.lang.Object
org.moeaframework.util.tree.Node
org.moeaframework.util.tree.LessThan
- All Implemented Interfaces:
Serializable
The node for comparing if a number is less than another.
Name | Type | Description |
---|---|---|
Argument 1 | Number | The first number |
Argument 2 | Number | The second number |
Return Value | Boolean | true if the first number is less than the second; false otherwise |
- See Also:
-
Constructor Summary
ConstructorDescriptionLessThan()
Constructs a new node for comparing if a number is less than another. -
Method Summary
Modifier and TypeMethodDescriptioncopyNode()
Returns a copy of this node, but without any children or parents assigned.evaluate
(Environment environment) Evaluates this node in the context of the specified environment.Methods inherited from class org.moeaframework.util.tree.Node
copyTree, getArgument, getArgumentType, getDepth, getFunctionAt, getFunctionAt, getMaximumHeight, getMinimumHeight, getNodeAt, getNodeAt, getNodeAt, getNumberOfArguments, getNumberOfFunctions, getNumberOfFunctions, getNumberOfNodes, getNumberOfNodes, getNumberOfNodes, getNumberOfTerminals, getNumberOfTerminals, getParent, getReturnType, getTerminalAt, getTerminalAt, isFixed, isTerminal, isValid, setArgument, setFixed, setFixedTree, size, toString
-
Constructor Details
-
LessThan
public LessThan()Constructs a new node for comparing if a number is less than another.
-
-
Method Details