|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<GpsFixQuality>
org.ka2ddo.gps.GpsFixQuality
public enum GpsFixQuality
This enum defines the fix quality (as used in the NMEA 0183 V3.01 $GPGGA sentence).
| Enum Constant Summary | |
|---|---|
DGPS
Differential GPS fix. |
|
DR
Estimated dead-reckoned fix. |
|
FLOAT_RTK
float Real-Time Kinematic fix. |
|
GPS_SPS
Standard GPS fix. |
|
INVALID
No fix. |
|
MANUAL
Manual input. |
|
PPS
Providing only time reference. |
|
RTK
Real-time kinematic fix. |
|
SIM
Simulation. |
|
| Method Summary | |
|---|---|
boolean |
isValid()
|
static GpsFixQuality[] |
nonClonedValues()
Get a non-cloned copy of the values() array, thereby saving CPU time and transient heap memory. |
static GpsFixQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GpsFixQuality[] |
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 |
|---|
public static final GpsFixQuality INVALID
public static final GpsFixQuality GPS_SPS
public static final GpsFixQuality DGPS
public static final GpsFixQuality PPS
public static final GpsFixQuality RTK
public static final GpsFixQuality FLOAT_RTK
public static final GpsFixQuality DR
public static final GpsFixQuality MANUAL
public static final GpsFixQuality SIM
| Method Detail |
|---|
public static GpsFixQuality[] values()
for (GpsFixQuality c : GpsFixQuality.values()) System.out.println(c);
public static GpsFixQuality 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 name
java.lang.NullPointerException - if the argument is nullpublic final boolean isValid()
public static GpsFixQuality[] nonClonedValues()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||