public static enum StationState.SpecialState extends java.lang.Enum<StationState.SpecialState>
Enum Constant and Description |
---|
DEADRECKONED
The station was moving the last time we received a position report and has not
sent an updated position report in a while, such that the station is plotted at
a deadreckoned position based on the last course and speed, rather than at the
last reported position.
|
EMERGENCY
This station has reported an emergency.
|
FIXED
The station is remaining in a single location.
|
MOVING
The station is moving to a different location.
|
OLD
This station's data has not been updated for more than 80 minutes.
|
OTHER_OBJ
This object or item is managed by some other APRS station.
|
OWN_OBJ
This object or item is managed by the local YAAC station instance.
|
Modifier and Type | Method and Description |
---|---|
static StationState.SpecialState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StationState.SpecialState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StationState.SpecialState FIXED
public static final StationState.SpecialState MOVING
public static final StationState.SpecialState DEADRECKONED
public static final StationState.SpecialState OLD
public static final StationState.SpecialState EMERGENCY
public static final StationState.SpecialState OWN_OBJ
public static final StationState.SpecialState OTHER_OBJ
public static StationState.SpecialState[] values()
for (StationState.SpecialState c : StationState.SpecialState.values()) System.out.println(c);
public static StationState.SpecialState 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