static enum NmeaReader.RMC extends java.lang.Enum<NmeaReader.RMC>
Enum Constant and Description |
---|
COURSE |
DATE |
LENGTH_EAST |
LENGTH_EAST_NAME |
MAGNETIC_DECLINATION |
MODE
Mode (A = autonom; D = differential; E = estimated; N = not valid; S = simulated)
|
RECEIVER_WARNING
Warning from the receiver (A = data ok, V = warning)
|
SPEED |
TIME |
UNKNOWN |
WIDTH_NORTH |
WIDTH_NORTH_NAME |
Modifier and Type | Field and Description |
---|---|
(package private) int |
position |
Modifier and Type | Method and Description |
---|---|
static NmeaReader.RMC |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NmeaReader.RMC[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NmeaReader.RMC TIME
public static final NmeaReader.RMC RECEIVER_WARNING
public static final NmeaReader.RMC WIDTH_NORTH
public static final NmeaReader.RMC WIDTH_NORTH_NAME
public static final NmeaReader.RMC LENGTH_EAST
public static final NmeaReader.RMC LENGTH_EAST_NAME
public static final NmeaReader.RMC SPEED
public static final NmeaReader.RMC COURSE
public static final NmeaReader.RMC DATE
public static final NmeaReader.RMC MAGNETIC_DECLINATION
public static final NmeaReader.RMC UNKNOWN
public static final NmeaReader.RMC MODE
final int position
public static NmeaReader.RMC[] values()
for (NmeaReader.RMC c : NmeaReader.RMC.values()) System.out.println(c);
public static NmeaReader.RMC 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