public enum FitnessModel extends java.lang.Enum<FitnessModel>
| Enum Constant and Description |
|---|
ANGLE_PLUS_ABS_DIST_ORIGIN |
ANGLE_PLUS_DIST_ORIGIN |
ANGLE_PLUS_DIST_ORIGIN_POW_2 |
ANGLE_POW_2 |
ANGLE_POW_2_PLUS_USED_WAY |
| Modifier and Type | Method and Description |
|---|---|
static FitnessModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FitnessModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FitnessModel ANGLE_POW_2
public static final FitnessModel ANGLE_POW_2_PLUS_USED_WAY
public static final FitnessModel ANGLE_PLUS_DIST_ORIGIN
public static final FitnessModel ANGLE_PLUS_DIST_ORIGIN_POW_2
public static final FitnessModel ANGLE_PLUS_ABS_DIST_ORIGIN
public static FitnessModel[] values()
for (FitnessModel c : FitnessModel.values()) System.out.println(c);
public static FitnessModel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null