Class LessThanOrEqual

java.lang.Object
org.moeaframework.util.tree.Node
org.moeaframework.util.tree.LessThanOrEqual

public class LessThanOrEqual extends Node
The node for comparing if a number is less than or equal to another.
Node signature:
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 or equal to the second; false otherwise
  • Constructor Details

    • LessThanOrEqual

      public LessThanOrEqual()
      Constructs a new node for comparing if a number is less than or equal to another.
  • Method Details

    • copyNode

      public LessThanOrEqual copyNode()
      Description copied from class: Node
      Returns a copy of this node, but without any children or parents assigned.
      Specified by:
      copyNode in class Node
      Returns:
      a copy of this node, but without any children or parents assigned
    • evaluate

      public Boolean evaluate(Environment environment)
      Description copied from class: Node
      Evaluates this node in the context of the specified environment.
      Specified by:
      evaluate in class Node
      Parameters:
      environment - the execution environment
      Returns:
      the result of evaluating this node