org.openstreetmap.josm.io
Enum NmeaReader.GPGGA

java.lang.Object
  extended by java.lang.Enum<NmeaReader.GPGGA>
      extended by org.openstreetmap.josm.io.NmeaReader.GPGGA
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NmeaReader.GPGGA>
Enclosing class:
NmeaReader

public static enum NmeaReader.GPGGA
extends java.lang.Enum<NmeaReader.GPGGA>


Enum Constant Summary
GPS_AGE
           
HDOP
           
HEIGHT
           
HEIGHT_2
           
HEIGHT_2_UNTIS
           
HEIGHT_UNTIS
           
LATITUDE
           
LATITUDE_NAME
           
LONGITUDE
           
LONGITUDE_NAME
           
QUALITY
          Quality (0 = invalid, 1 = GPS, 2 = DGPS, 6 = estimanted (@since NMEA 2.3))
REF
           
SATELLITE_COUNT
           
TIME
           
 
Field Summary
 int position
           
 
Method Summary
static NmeaReader.GPGGA valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NmeaReader.GPGGA[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TIME

public static final NmeaReader.GPGGA TIME

LATITUDE

public static final NmeaReader.GPGGA LATITUDE

LATITUDE_NAME

public static final NmeaReader.GPGGA LATITUDE_NAME

LONGITUDE

public static final NmeaReader.GPGGA LONGITUDE

LONGITUDE_NAME

public static final NmeaReader.GPGGA LONGITUDE_NAME

QUALITY

public static final NmeaReader.GPGGA QUALITY
Quality (0 = invalid, 1 = GPS, 2 = DGPS, 6 = estimanted (@since NMEA 2.3))


SATELLITE_COUNT

public static final NmeaReader.GPGGA SATELLITE_COUNT

HDOP

public static final NmeaReader.GPGGA HDOP

HEIGHT

public static final NmeaReader.GPGGA HEIGHT

HEIGHT_UNTIS

public static final NmeaReader.GPGGA HEIGHT_UNTIS

HEIGHT_2

public static final NmeaReader.GPGGA HEIGHT_2

HEIGHT_2_UNTIS

public static final NmeaReader.GPGGA HEIGHT_2_UNTIS

GPS_AGE

public static final NmeaReader.GPGGA GPS_AGE

REF

public static final NmeaReader.GPGGA REF
Field Detail

position

public final int position
Method Detail

values

public static NmeaReader.GPGGA[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (NmeaReader.GPGGA c : NmeaReader.GPGGA.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static NmeaReader.GPGGA valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


JOSM