|
MOEA Framework 2.5 API Specification |
|||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||
java.lang.Objectorg.moeaframework.util.tree.Node
org.moeaframework.util.tree.Constant
public class Constant
The node for defining a constant value. The inputs and outputs to this node are shown below:
| Name | Type | Description |
|---|---|---|
| Return Value | Number | The constant value |
| Constructor Summary | |
|---|---|
Constant(boolean value)
Constructs a new node for defining a constant boolean value. |
|
Constant(Class<?> type,
Object value)
Constructs a new node for defining a constant Object. |
|
Constant(double value)
Constructs a new node for defining a constant floating-point number. |
|
Constant(long value)
Constructs a new node for defining a constant integer value. |
|
| Method Summary | |
|---|---|
Constant |
copyNode()
Returns a copy of this node, but without any children or parents assigned. |
Object |
evaluate(Environment environment)
Evaluates this node in the context of the specified environment. |
String |
toString()
Returns a string representation of the object. |
| 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 |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public Constant(double value)
value - the floating-point numberpublic Constant(long value)
value - the integer valuepublic Constant(boolean value)
value - the boolean value
public Constant(Class<?> type,
Object value)
Object. It is
necessary to pass the type explicitly to ensure values such as
null are handled correctly.
type - the type of the objectvalue - the object| Method Detail |
|---|
public Constant copyNode()
Node
copyNode in class Nodepublic Object evaluate(Environment environment)
Node
evaluate in class Nodeenvironment - the execution environment
public String toString()
java.lang.ObjecttoString method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
toString in class Node
|
MOEA Framework 2.5 API Specification |
|||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||