public static enum HistoryEvent.EventType extends java.lang.Enum<HistoryEvent.EventType>
| Modifier and Type | Method and Description |
|---|---|
static HistoryEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HistoryEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistoryEvent.EventType DISCOVER_NEW_WORLD
public static final HistoryEvent.EventType DISCOVER_REGION
public static final HistoryEvent.EventType MEET_NATION
public static final HistoryEvent.EventType CITY_OF_GOLD
public static final HistoryEvent.EventType FOUND_COLONY
public static final HistoryEvent.EventType ABANDON_COLONY
public static final HistoryEvent.EventType CONQUER_COLONY
public static final HistoryEvent.EventType COLONY_DESTROYED
public static final HistoryEvent.EventType COLONY_CONQUERED
public static final HistoryEvent.EventType DESTROY_SETTLEMENT
public static final HistoryEvent.EventType DESTROY_NATION
public static final HistoryEvent.EventType NATION_DESTROYED
public static final HistoryEvent.EventType FOUNDING_FATHER
public static final HistoryEvent.EventType DECLARE_INDEPENDENCE
public static final HistoryEvent.EventType INDEPENDENCE
public static final HistoryEvent.EventType SPANISH_SUCCESSION
public static final HistoryEvent.EventType DECLARE_WAR
public static final HistoryEvent.EventType CEASE_FIRE
public static final HistoryEvent.EventType MAKE_PEACE
public static final HistoryEvent.EventType FORM_ALLIANCE
public static HistoryEvent.EventType[] values()
for (HistoryEvent.EventType c : HistoryEvent.EventType.values()) System.out.println(c);
public static HistoryEvent.EventType 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