|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TalkerId>
net.sf.marineapi.nmea.sentence.TalkerId
public enum TalkerId
The enumeration of NMEA Talker IDs, i.e. the first two characters in sentence's address field. For example, "GP" in "$GPGGA".
SentenceId
Enum Constant Summary | |
---|---|
AG
Autopilot - General |
|
AP
Autopilot - Magnetic |
|
CC
Deprecated. |
|
CD
Communications - Digital Selective Calling (DSC) |
|
CM
Computer - Memory Data (obsolete) |
|
CS
Communications - Satellite |
|
CT
Communications - Radio-Telephone (MF/HF) |
|
CV
Communications - Radio-Telephone (VHF) |
|
CX
Communications - Scanning Receiver |
|
DE
Deprecated. |
|
DF
Direction Finder |
|
DM
Velocity Sensor, Speed Log, Water, Magnetic |
|
EC
Electronic Chart Display & Information System (ECDIS) |
|
EP
Emergency Position Indicating Beacon (EPIRB) |
|
ER
Engine Room Monitoring Systems |
|
GP
Global Positioning System (GPS) |
|
HC
Heading - Magnetic Compass |
|
HE
Heading - North Seeking Gyro |
|
HN
Heading - Non North Seeking Gyro |
|
II
Integrated Instrumentation |
|
IN
Integrated Navigation |
|
LA
Deprecated. |
|
LC
Deprecated. |
|
MP
Deprecated. |
|
OM
Deprecated. |
|
OS
Deprecated. |
|
P
Proprietary sentence format (does not define the talker device). |
|
RA
RADAR and/or ARPA |
|
SD
Sounder, Depth |
|
SN
Electronic Positioning System, other/general |
|
SS
Sounder, Scanning |
|
TI
Turn Rate Indicator |
|
TR
TRANSIT Navigation System |
|
VD
Velocity Sensor, Doppler, other/general |
|
WI
Weather Instruments |
|
VW
Velocity Sensor, Speed Log, Water, Mechanical |
|
YC
Deprecated. |
|
YD
Deprecated. |
|
YF
Deprecated. |
|
YL
Deprecated. |
|
YP
Deprecated. |
|
YR
Deprecated. |
|
YT
Deprecated. |
|
YV
Deprecated. |
|
YX
Transducer |
|
ZA
Timekeeper - Atomic Clock |
|
ZC
Timekeeper - Chronometer |
|
ZQ
Timekeeper - Quartz |
|
ZV
Timekeeper - Radio Update, WWV or WWVH |
Method Summary | |
---|---|
static TalkerId |
parse(String nmea)
Parses the talker id from specified sentence String and returns the corresponding TalkerId enum using the valueOf(String) method. |
static TalkerId |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TalkerId[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TalkerId AG
public static final TalkerId AP
@Deprecated public static final TalkerId CC
public static final TalkerId CD
public static final TalkerId CM
public static final TalkerId CS
public static final TalkerId CT
public static final TalkerId CV
public static final TalkerId CX
@Deprecated public static final TalkerId DE
public static final TalkerId DF
public static final TalkerId DM
public static final TalkerId EC
public static final TalkerId EP
public static final TalkerId ER
public static final TalkerId GP
public static final TalkerId HC
public static final TalkerId HE
public static final TalkerId HN
public static final TalkerId II
public static final TalkerId IN
@Deprecated public static final TalkerId LA
@Deprecated public static final TalkerId LC
@Deprecated public static final TalkerId MP
@Deprecated public static final TalkerId OM
@Deprecated public static final TalkerId OS
public static final TalkerId P
public static final TalkerId RA
public static final TalkerId SD
public static final TalkerId SN
public static final TalkerId SS
public static final TalkerId TI
public static final TalkerId TR
public static final TalkerId VD
public static final TalkerId VW
public static final TalkerId WI
@Deprecated public static final TalkerId YC
@Deprecated public static final TalkerId YD
@Deprecated public static final TalkerId YF
@Deprecated public static final TalkerId YL
@Deprecated public static final TalkerId YP
@Deprecated public static final TalkerId YR
@Deprecated public static final TalkerId YT
@Deprecated public static final TalkerId YV
public static final TalkerId YX
public static final TalkerId ZA
public static final TalkerId ZC
public static final TalkerId ZQ
public static final TalkerId ZV
Method Detail |
---|
public static final TalkerId[] values()
for(TalkerId c : TalkerId.values()) System.out.println(c);
public static TalkerId valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic static TalkerId parse(String nmea)
valueOf(String)
method.
nmea
- Sentence String
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |