|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GpsFixQuality>
net.sf.marineapi.nmea.util.GpsFixQuality
public enum GpsFixQuality
GpsFixQuality defines the supported fix quality types.
Enum Constant Summary | |
---|---|
DGPS
Differential GPS fix. |
|
ESTIMATED
Estimated, dead reckoning (2.3 feature) |
|
FRTK
Float RTK |
|
INVALID
No GPS fix acquired. |
|
MANUAL
Manual input mode |
|
NORMAL
Normal GPS fix, Standard Position Service (SPS). |
|
PPS
Precise Positioning Service fix. |
|
RTK
Real Time Kinematic |
|
SIMULATED
Simulation mode |
Method Summary | |
---|---|
int |
toInt()
Returns the corresponding int indicator for fix quality. |
static GpsFixQuality |
valueOf(int val)
Get GpsFixQuality enum that corresponds the actual integer identifier used in the sentences. |
static GpsFixQuality |
valueOf(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'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 GpsFixQuality INVALID
public static final GpsFixQuality NORMAL
public static final GpsFixQuality DGPS
public static final GpsFixQuality PPS
public static final GpsFixQuality RTK
public static final GpsFixQuality FRTK
public static final GpsFixQuality ESTIMATED
public static final GpsFixQuality MANUAL
public static final GpsFixQuality SIMULATED
Method Detail |
---|
public static final GpsFixQuality[] values()
for(GpsFixQuality c : GpsFixQuality.values()) System.out.println(c);
public static GpsFixQuality 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 int toInt()
public static GpsFixQuality valueOf(int val)
val
- Status identifier value
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |