Enum Class ProblemType

java.lang.Object
java.lang.Enum<ProblemType>
com.decs.application.data.problem.ProblemType
All Implemented Interfaces:
Serializable, Comparable<ProblemType>, Constable

public enum ProblemType extends Enum<ProblemType>
Problem Type Enumeration

Enumeration of the supported evolutionary problems

Version:
1.0
Author:
Bruno Guiomar
  • Enum Constant Details

    • TWO_BOX

      public static final ProblemType TWO_BOX
      Newcomb's paradox (two box problem)
    • ARTIFICIAL_ANT_SANTA_FE

      public static final ProblemType ARTIFICIAL_ANT_SANTA_FE
      Santa Fe Trail problem using artificial ant optimization
    • LAWN_MOWER_8X8

      public static final ProblemType LAWN_MOWER_8X8
      Lawn Mower problem with 8 by 8 blocks
    • BOOL_11_MULTIPLEXER_FAST

      public static final ProblemType BOOL_11_MULTIPLEXER_FAST
      11-bit Multiplexer problem (fast algorithm)
  • Field Details

    • parameterGroupList

      private final ParameterGroupType[] parameterGroupList
    • code

      private final String code
    • fullName

      private final String fullName
    • type

      private final String type
  • Constructor Details

  • Method Details

    • values

      public static ProblemType[] 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 ProblemType 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ProblemType>
    • getParameterGroups

      public ParameterGroupType[] getParameterGroups()
    • getCode

      public String getCode()