public enum MonitorType extends java.lang.Enum<MonitorType>
Enum Constant and Description |
---|
APRS
Station should be beaconing on APRS.
|
DIGIPEATER
Station should be digipeating other stations.
|
IGATE
Station should be I-gating other stations to or from the APRS-IS.
|
OPENTRAC
Station should be beaconing on OpenTRAC.
|
WEATHER
Station should be reporting weather information.
|
WINLINK
Station should be providing WinLink2000 packet service.
|
Modifier and Type | Method and Description |
---|---|
static MonitorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MonitorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonitorType APRS
public static final MonitorType OPENTRAC
public static final MonitorType WINLINK
public static final MonitorType DIGIPEATER
public static final MonitorType IGATE
public static final MonitorType WEATHER
public static MonitorType[] values()
for (MonitorType c : MonitorType.values()) System.out.println(c);
public static MonitorType 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