moea.commons.examples
Enum TestFunction.KindOfTestFunction

java.lang.Object
  extended by java.lang.Enum<TestFunction.KindOfTestFunction>
      extended by moea.commons.examples.TestFunction.KindOfTestFunction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TestFunction.KindOfTestFunction>
Enclosing class:
TestFunction<I extends Individual>

public static enum TestFunction.KindOfTestFunction
extends java.lang.Enum<TestFunction.KindOfTestFunction>


Enum Constant Summary
DTLZ2
           
DTLZ5
           
DTLZ7
           
ZDT1
           
ZDT2
           
ZDT3
           
ZDT4
           
ZDT6
           
 
Method Summary
static TestFunction.KindOfTestFunction valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TestFunction.KindOfTestFunction[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ZDT1

public static final TestFunction.KindOfTestFunction ZDT1

ZDT2

public static final TestFunction.KindOfTestFunction ZDT2

ZDT3

public static final TestFunction.KindOfTestFunction ZDT3

ZDT4

public static final TestFunction.KindOfTestFunction ZDT4

ZDT6

public static final TestFunction.KindOfTestFunction ZDT6

DTLZ2

public static final TestFunction.KindOfTestFunction DTLZ2

DTLZ5

public static final TestFunction.KindOfTestFunction DTLZ5

DTLZ7

public static final TestFunction.KindOfTestFunction DTLZ7
Method Detail

values

public static TestFunction.KindOfTestFunction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TestFunction.KindOfTestFunction c : TestFunction.KindOfTestFunction.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TestFunction.KindOfTestFunction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null