public static enum NmeaReader.NMEA_TYPE extends java.lang.Enum<NmeaReader.NMEA_TYPE>
| Enum Constant and Description |
|---|
GPGGA
GPS positions.
|
GPGSA
SA = satellites active.
|
GPRMC
RMC = recommended minimum sentence C.
|
GPVTG
Course over ground and ground speed
|
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
type |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.String type) |
java.lang.String |
getType() |
static NmeaReader.NMEA_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NmeaReader.NMEA_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NmeaReader.NMEA_TYPE GPRMC
public static final NmeaReader.NMEA_TYPE GPGGA
public static final NmeaReader.NMEA_TYPE GPGSA
public static final NmeaReader.NMEA_TYPE GPVTG
private final java.lang.String type
public static NmeaReader.NMEA_TYPE[] values()
for (NmeaReader.NMEA_TYPE c : NmeaReader.NMEA_TYPE.values()) System.out.println(c);
public static NmeaReader.NMEA_TYPE 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.String getType()
public boolean equals(java.lang.String type)