public enum GuiContentType extends java.lang.Enum<GuiContentType>
Enum Constant and Description |
---|
BULLETIN
GuiContentType of a UI displaying only APRS text messages that are broadcast bulletins.
|
LOCAL_OBJECTS
GuiContentType of a tabular UI displaying locally originated Objects.
|
MAP
GuiContentType of a geographical map display with stations and objects on it.
|
RAW_PACKETS
GuiContentType of a tabular UI displaying raw frames, with the sending station's callsign in model column 1.
|
STATIONS
GuiContentType of a tabular UI displaying the current status of stations and objects.
|
TEXT_MESSAGE
GuiContentType of a UI displaying only APRS text messages (code ':').
|
WEATHER_ZONES
GuiContentType of a tabular UI displaying current severe weather zones.
|
Modifier and Type | Method and Description |
---|---|
static GuiContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GuiContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuiContentType TEXT_MESSAGE
public static final GuiContentType BULLETIN
public static final GuiContentType STATIONS
public static final GuiContentType WEATHER_ZONES
public static final GuiContentType RAW_PACKETS
public static final GuiContentType MAP
public static final GuiContentType LOCAL_OBJECTS
public static GuiContentType[] values()
for (GuiContentType c : GuiContentType.values()) System.out.println(c);
public static GuiContentType 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