public enum ListViewMode extends java.lang.Enum<ListViewMode>
Enum Constant and Description |
---|
ALL
View both stations and objects.
|
OBJECT_ONLY
View only objects (non-transmitting entities announced by a station).
|
STATION_ONLY
View only stations (entities originating messages on their own).
|
Modifier and Type | Method and Description |
---|---|
boolean |
isIncludeObjects()
Indicate whether this enum allows for including APRS Objects.
|
boolean |
isIncludeStations()
Indicate whether this enum allows for including APRS Stations.
|
java.lang.String |
toString()
Create a String describing this enum.
|
static ListViewMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListViewMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListViewMode ALL
public static final ListViewMode STATION_ONLY
public static final ListViewMode OBJECT_ONLY
public static ListViewMode[] values()
for (ListViewMode c : ListViewMode.values()) System.out.println(c);
public static ListViewMode 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 nullpublic boolean isIncludeObjects()
public boolean isIncludeStations()
public java.lang.String toString()
toString
in class java.lang.Enum<ListViewMode>