org.openstreetmap.josm.io
Enum NmeaReader.GPGSA

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

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


Enum Constant Summary
AUTOMATIC
           
FIX_TYPE
           
HDOP
           
PDOP
           
PRN_1
           
PRN_10
           
PRN_11
           
PRN_12
           
PRN_2
           
PRN_3
           
PRN_4
           
PRN_5
           
PRN_6
           
PRN_7
           
PRN_8
           
PRN_9
           
VDOP
           
 
Field Summary
 int position
           
 
Method Summary
static NmeaReader.GPGSA valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NmeaReader.GPGSA[] 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

AUTOMATIC

public static final NmeaReader.GPGSA AUTOMATIC

FIX_TYPE

public static final NmeaReader.GPGSA FIX_TYPE

PRN_1

public static final NmeaReader.GPGSA PRN_1

PRN_2

public static final NmeaReader.GPGSA PRN_2

PRN_3

public static final NmeaReader.GPGSA PRN_3

PRN_4

public static final NmeaReader.GPGSA PRN_4

PRN_5

public static final NmeaReader.GPGSA PRN_5

PRN_6

public static final NmeaReader.GPGSA PRN_6

PRN_7

public static final NmeaReader.GPGSA PRN_7

PRN_8

public static final NmeaReader.GPGSA PRN_8

PRN_9

public static final NmeaReader.GPGSA PRN_9

PRN_10

public static final NmeaReader.GPGSA PRN_10

PRN_11

public static final NmeaReader.GPGSA PRN_11

PRN_12

public static final NmeaReader.GPGSA PRN_12

PDOP

public static final NmeaReader.GPGSA PDOP

HDOP

public static final NmeaReader.GPGSA HDOP

VDOP

public static final NmeaReader.GPGSA VDOP
Field Detail

position

public final int position
Method Detail

values

public static NmeaReader.GPGSA[] 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.GPGSA c : NmeaReader.GPGSA.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.GPGSA 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