Package org.moeaframework.util.tree
Class And
java.lang.Object
org.moeaframework.util.tree.Node
org.moeaframework.util.tree.And
- All Implemented Interfaces:
Serializable
The node for calculating the logical AND of two boolean values.
Name | Type | Description |
---|---|---|
Argument 1 | Boolean | The first boolean value |
Argument 2 | Boolean | The second boolean value |
Return Value | Number | The logical AND of the two boolean values |
- See Also:
-
Constructor Summary
ConstructorDescriptionAnd()
Constructs a new node for calculating the logical AND of two boolean values. -
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
-
And
public And()Constructs a new node for calculating the logical AND of two boolean values.
-
-
Method Details