public enum EObjective extends java.lang.Enum<EObjective>
| Enum Constant | Description |
|---|---|
ALDERMAN_2_YEAR |
Alderman in 2 years
|
ALDERMAN_3_YEAR |
Alderman in 3 years
|
ALDERMAN_5_YEAR |
Alderman in 5 years
|
BUSINESSVALUE_100M |
Businessvalue 100'000'000
|
BUSINESSVALUE_10M |
Businessvalue 10'000'000
|
BUSINESSVALUE_1M |
Businessvalue 1'000'000
|
ENDLESS |
Endless game
|
MAYOR_1_YEAR |
Mayor in 1 year
|
MAYOR_2_YEAR |
Mayor in 2 years
|
MAYOR_3_YEAR |
Mayor in 3 years
|
| Modifier and Type | Method | Description |
|---|---|---|
static EObjective |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EObjective[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EObjective ENDLESS
public static final EObjective MAYOR_1_YEAR
public static final EObjective MAYOR_2_YEAR
public static final EObjective MAYOR_3_YEAR
public static final EObjective ALDERMAN_2_YEAR
public static final EObjective ALDERMAN_3_YEAR
public static final EObjective ALDERMAN_5_YEAR
public static final EObjective BUSINESSVALUE_1M
public static final EObjective BUSINESSVALUE_10M
public static final EObjective BUSINESSVALUE_100M
public static EObjective[] values()
for (EObjective c : EObjective.values()) System.out.println(c);
public static EObjective 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 nullCopyright © 2011-2018 Sahits GmbH. All Rights Reserved.