public enum Technology extends java.lang.Enum<Technology>
| Enum Constant and Description |
|---|
BOXES
Boxes technology.
|
COIN
Coin technology.
|
COMBUSTION
Combustion technology.
|
COOKING
Cooking technology.
|
CRYSTALS
Crystals technology.
|
DOMESTICATION
Domestication technology.
|
EUGENICS
Eugenics technology.
|
EXPERTISE
Expertise technology.
|
FLINT
Flint technology.
|
HOUSES
Houses technology.
|
HUTS
Huts technology.
|
JOBS
Jobs technology.
|
MILITARY_TRAINING
Military Training technology.
|
NAVIGATION
Navigation technology.
|
OIL
Oil technology.
|
POISON
Poison technology.
|
RAFTS
Rafts technology.
|
ROCK_ART
Rock Art technology.
|
SCHOOLS
Schools technology.
|
SHARPENERS
Sharpeners technology.
|
TACTICS
Tactics technology.
|
UTENSILS
Utensils technology.
|
VOCABULARY
Vocabulary technology.
|
WHEEL
Wheel technology.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getFoodCost()
Returns the food cost of researching this technology.
|
int |
getLevelRequired()
Returns the level required to investigate this technology.
|
int |
getStoneCost()
Returns the stone cost of researching this technology.
|
int |
getWoodCost()
Returns the wood cost of researching this technology.
|
static Technology |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Technology[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Technology DOMESTICATION
public static final Technology MILITARY_TRAINING
public static final Technology BOXES
public static final Technology RAFTS
public static final Technology ROCK_ART
public static final Technology COIN
public static final Technology UTENSILS
public static final Technology SHARPENERS
public static final Technology COOKING
public static final Technology EUGENICS
public static final Technology NAVIGATION
public static final Technology JOBS
public static final Technology OIL
public static final Technology VOCABULARY
public static final Technology HUTS
public static final Technology TACTICS
public static final Technology CRYSTALS
public static final Technology COMBUSTION
public static final Technology SCHOOLS
public static final Technology POISON
public static final Technology EXPERTISE
public static final Technology FLINT
public static final Technology HOUSES
public static final Technology WHEEL
public static Technology[] values()
for (Technology c : Technology.values()) System.out.println(c);
public static Technology 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 nullpublic int getLevelRequired()
public int getFoodCost()
public int getWoodCost()
public int getStoneCost()