jfreerails.controller
Enum ModelRoot.Property
java.lang.Object
java.lang.Enum<ModelRoot.Property>
jfreerails.controller.ModelRoot.Property
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ModelRoot.Property>
- Enclosing interface:
- ModelRoot
public static enum ModelRoot.Property
- extends java.lang.Enum<ModelRoot.Property>
Method Summary |
static ModelRoot.Property |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ModelRoot.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
CURSOR_POSITION
public static final ModelRoot.Property CURSOR_POSITION
CURSOR_MODE
public static final ModelRoot.Property CURSOR_MODE
TRACK_BUILDER_MODE
public static final ModelRoot.Property TRACK_BUILDER_MODE
PREVIOUS_CURSOR_MODE
public static final ModelRoot.Property PREVIOUS_CURSOR_MODE
CURSOR_MESSAGE
public static final ModelRoot.Property CURSOR_MESSAGE
QUICK_MESSAGE
public static final ModelRoot.Property QUICK_MESSAGE
PERMANENT_MESSAGE
public static final ModelRoot.Property PERMANENT_MESSAGE
SHOW_STATION_NAMES
public static final ModelRoot.Property SHOW_STATION_NAMES
SHOW_CARGO_AT_STATIONS
public static final ModelRoot.Property SHOW_CARGO_AT_STATIONS
SHOW_STATION_BORDERS
public static final ModelRoot.Property SHOW_STATION_BORDERS
SERVER
public static final ModelRoot.Property SERVER
PLAY_SOUNDS
public static final ModelRoot.Property PLAY_SOUNDS
BUILD_TRACK_STRATEGY
public static final ModelRoot.Property BUILD_TRACK_STRATEGY
IGNORE_KEY_EVENTS
public static final ModelRoot.Property IGNORE_KEY_EVENTS
PROPOSED_TRACK
public static final ModelRoot.Property PROPOSED_TRACK
SAVED_GAMES_LIST
public static final ModelRoot.Property SAVED_GAMES_LIST
THINKING_POINT
public static final ModelRoot.Property THINKING_POINT
TIME
public static final ModelRoot.Property TIME
values
public static final ModelRoot.Property[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ModelRoot.Property c : ModelRoot.Property.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ModelRoot.Property valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name