Enum EMOEAFrameworkAlgorithmName
- java.lang.Object
-
- java.lang.Enum<EMOEAFrameworkAlgorithmName>
-
- ai.libs.jaicore.ea.algorithm.moea.moeaframework.util.EMOEAFrameworkAlgorithmName
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EMOEAFrameworkAlgorithmName>
public enum EMOEAFrameworkAlgorithmName extends java.lang.Enum<EMOEAFrameworkAlgorithmName>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static EMOEAFrameworkAlgorithmNamevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EMOEAFrameworkAlgorithmName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CMA_ES
public static final EMOEAFrameworkAlgorithmName CMA_ES
-
DBEA
public static final EMOEAFrameworkAlgorithmName DBEA
-
EMOEA
public static final EMOEAFrameworkAlgorithmName EMOEA
-
ENSGAII
public static final EMOEAFrameworkAlgorithmName ENSGAII
-
GDE3
public static final EMOEAFrameworkAlgorithmName GDE3
-
IBEA
public static final EMOEAFrameworkAlgorithmName IBEA
-
MOEAD
public static final EMOEAFrameworkAlgorithmName MOEAD
-
MSOPS
public static final EMOEAFrameworkAlgorithmName MSOPS
-
NSGAII
public static final EMOEAFrameworkAlgorithmName NSGAII
-
NSGAIII
public static final EMOEAFrameworkAlgorithmName NSGAIII
-
OMOPSO
public static final EMOEAFrameworkAlgorithmName OMOPSO
-
PAES
public static final EMOEAFrameworkAlgorithmName PAES
-
PESA2
public static final EMOEAFrameworkAlgorithmName PESA2
-
RANDOM
public static final EMOEAFrameworkAlgorithmName RANDOM
-
RVEA
public static final EMOEAFrameworkAlgorithmName RVEA
-
SMPSO
public static final EMOEAFrameworkAlgorithmName SMPSO
-
SMS_EMOA
public static final EMOEAFrameworkAlgorithmName SMS_EMOA
-
SPEA2
public static final EMOEAFrameworkAlgorithmName SPEA2
-
VEGA
public static final EMOEAFrameworkAlgorithmName VEGA
-
GA
public static final EMOEAFrameworkAlgorithmName GA
-
ES
public static final EMOEAFrameworkAlgorithmName ES
-
DE
public static final EMOEAFrameworkAlgorithmName DE
-
-
Method Detail
-
values
public static EMOEAFrameworkAlgorithmName[] 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 (EMOEAFrameworkAlgorithmName c : EMOEAFrameworkAlgorithmName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EMOEAFrameworkAlgorithmName 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 namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<EMOEAFrameworkAlgorithmName>
-
-