public static enum NSGA2Breeder.BreedingState extends java.lang.Enum<NSGA2Breeder.BreedingState>
Enum Constant and Description |
---|
ARCHIVE_LOADED |
BREEDING_COMPLETE |
Modifier and Type | Method and Description |
---|---|
static NSGA2Breeder.BreedingState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NSGA2Breeder.BreedingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NSGA2Breeder.BreedingState ARCHIVE_LOADED
public static final NSGA2Breeder.BreedingState BREEDING_COMPLETE
public static NSGA2Breeder.BreedingState[] values()
for (NSGA2Breeder.BreedingState c : NSGA2Breeder.BreedingState.values()) System.out.println(c);
public static NSGA2Breeder.BreedingState 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