public enum EScene extends java.lang.Enum<EScene>
| Enum Constant | Description |
|---|---|
ARMORY |
Indicate that currently the armory is displayed.
|
CHURCH |
Indicate that currently the church is displayed
|
CITY_HALL |
Indicate that currently the city hall is displayed
|
GUILD |
Indicate that currtently the guild is displayed
|
LOANER |
Indicate that currently the loaners office is displayed
|
MARKET |
Indicate that currently the market scene is displayed
|
PORT |
Indicate that currently the port scene is displayed
|
SEAMAP |
Indicate that currently the sea map is displayed
|
SHIPYARD |
Indicate that currently the shipyard is displayed
|
TAVERN |
Indicate that currently the tavern scene is displayed
|
| Modifier and Type | Method | Description |
|---|---|---|
static EScene |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EScene[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EScene PORT
public static final EScene MARKET
public static final EScene TAVERN
public static final EScene SHIPYARD
public static final EScene CITY_HALL
public static final EScene LOANER
public static final EScene SEAMAP
public static final EScene CHURCH
public static final EScene GUILD
public static final EScene ARMORY
public static EScene[] values()
for (EScene c : EScene.values()) System.out.println(c);
public static EScene 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.