public enum MsgEventType extends java.lang.Enum<MsgEventType>
Enum Constant and Description |
---|
ALARM
Generic alarm not associated with any particular message or precedence.
|
ANNOUNCEMENT
A non-critical announcement of an arbitrary event.
|
BEL
Terminal session received an ASCII/Unicode BEL control character.
|
CRITICAL_ERROR
Critical error message that the user should be informed about.
|
DX_BAND_OPENING
A DX band opening report has been received.
|
EMERGENCY
Message reporting emergency precedence.
|
GPS_LOCK_ACQUIRED
GPS lock has been acquired.
|
GPS_LOCK_LOST
GPS lock has been lost.
|
INTERNET_LOST
Internet connection has been lost.
|
INTERNET_RESTORED
Internet connection has been restored.
|
MESSAGE_CQ
APRS text message calling CQ.
|
MESSAGE_TO
APRS text message received addressed explicitly to this station.
|
MESSAGE_WEATHER_WARN
APRS text message from a government weather office warning of severe weather.
|
MSG_ACKNOWLEDGED
An APRS text message sent by this station was acknowledged (accepted) by
the recipient.
|
MSG_REJECTED
An APRS text message sent by this station was rejected by
the recipient.
|
NEW_BULLETIN
A new bulletin message has been received.
|
NEW_IN_RANGE
A station has sent a position report indicating it is newly within defined maximum range.
|
NEW_OBJECT
New object added to local knowledge base.
|
NEW_OBJECT_IN_RANGE
An object position report has been sent indicating it is newly within defined maximum range.
|
NEW_REPEATER_IN_RANGE
A new station or object identifying itself as a repeater has been discovered.
|
NEW_STATION
New station added to local knowledge base.
|
OBJ_TAKEOVER
Someone else took over one of our Objects/Items.
|
OBJECT_OUT_OF_RANGE
Known object moved out of defined maximum range.
|
PRIORITY
Message reporting priority precedence.
|
SPECIAL
Message reporting special precedence.
|
STATION_OUT_OF_RANGE
Known station moved out of defined maximum range.
|
STATION_TIMED_OUT
A specially-tagged station has not been heard from in the specified period of time.
|
TRACKED_STATION
A station or object being explicitly tracked has moved.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<?> |
getParamClass()
Get the Class of the primary parameter expected for this event type.
|
static MsgEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MsgEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MsgEventType MESSAGE_TO
public static final MsgEventType MESSAGE_CQ
public static final MsgEventType MESSAGE_WEATHER_WARN
public static final MsgEventType EMERGENCY
public static final MsgEventType PRIORITY
public static final MsgEventType SPECIAL
public static final MsgEventType ALARM
public static final MsgEventType NEW_IN_RANGE
public static final MsgEventType NEW_OBJECT_IN_RANGE
public static final MsgEventType DX_BAND_OPENING
public static final MsgEventType BEL
Terminal
public static final MsgEventType OBJ_TAKEOVER
public static final MsgEventType NEW_STATION
public static final MsgEventType NEW_OBJECT
public static final MsgEventType STATION_OUT_OF_RANGE
public static final MsgEventType INTERNET_LOST
public static final MsgEventType INTERNET_RESTORED
public static final MsgEventType GPS_LOCK_LOST
public static final MsgEventType GPS_LOCK_ACQUIRED
public static final MsgEventType NEW_BULLETIN
public static final MsgEventType OBJECT_OUT_OF_RANGE
public static final MsgEventType CRITICAL_ERROR
public static final MsgEventType NEW_REPEATER_IN_RANGE
public static final MsgEventType TRACKED_STATION
public static final MsgEventType ANNOUNCEMENT
public static final MsgEventType STATION_TIMED_OUT
public static final MsgEventType MSG_ACKNOWLEDGED
public static final MsgEventType MSG_REJECTED
public static MsgEventType[] values()
for (MsgEventType c : MsgEventType.values()) System.out.println(c);
public static MsgEventType 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 java.lang.Class<?> getParamClass()