public enum FirstWindow extends java.lang.Enum<FirstWindow>
| Enum Constant and Description |
|---|
map
Bring up the default map (original behavior of YAAC).
|
stationlist
Bring up the stations/object list.
|
| Modifier and Type | Method and Description |
|---|---|
static FirstWindow |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FirstWindow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirstWindow map
public static final FirstWindow stationlist
public static FirstWindow[] values()
for (FirstWindow c : FirstWindow.values()) System.out.println(c);
public static FirstWindow 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