public enum PopulationType extends Enum<PopulationType>
| Enum Constant and Description |
|---|
PopulationChangeableSize
Populacja o stałej liczebności.
|
PopulationConstantSize
Populacja o zmiennej liczebności.
|
| Modifier and Type | Method and Description |
|---|---|
static PopulationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PopulationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PopulationType PopulationChangeableSize
public static final PopulationType PopulationConstantSize
public static PopulationType[] values()
for (PopulationType c : PopulationType.values()) System.out.println(c);
public static PopulationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2008–2015 Delhezi. All rights reserved.