Package isula.aco

Enum Class AntPolicyType

All Implemented Interfaces:
Serializable, Comparable<AntPolicyType>, java.lang.constant.Constable

public enum AntPolicyType extends Enum<AntPolicyType>
A type of Ant Policy. So far, only two types are supported:
  • A node selection policy that directs the process of adding solution components
  • An after solution is ready policy, to perform actions after the ant has finished constructing a solution.
Author:
Carlos G. Gavidia
  • Enum Constant Details

    • NODE_SELECTION

      public static final AntPolicyType NODE_SELECTION
    • AFTER_NODE_SELECTION

      public static final AntPolicyType AFTER_NODE_SELECTION
    • AFTER_SOLUTION_IS_READY

      public static final AntPolicyType AFTER_SOLUTION_IS_READY
  • Method Details

    • values

      public static AntPolicyType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AntPolicyType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null