|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GpsFixStatus>
net.sf.marineapi.nmea.util.GpsFixStatus
public enum GpsFixStatus
GpsFixStatus defines the status of current GPS fix.
FaaMode
,
GpsFixQuality
,
DataStatus
Enum Constant Summary | |
---|---|
GPS_2D
2D GPS fix (lat/lon) |
|
GPS_3D
3D GPS fix (lat/lon/alt) |
|
GPS_NA
No GPS fix available |
Method Summary | |
---|---|
int |
toInt()
Returns the corresponding int value for fix status enum. |
static GpsFixStatus |
valueOf(int val)
Returns the GpsFixStatus enum corresponding to actual int identifier used in the sentences. |
static GpsFixStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GpsFixStatus[] |
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 GpsFixStatus GPS_NA
public static final GpsFixStatus GPS_2D
public static final GpsFixStatus GPS_3D
Method Detail |
---|
public static GpsFixStatus[] values()
for (GpsFixStatus c : GpsFixStatus.values()) System.out.println(c);
public static GpsFixStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int toInt()
public static GpsFixStatus valueOf(int val)
val
- Fix status indentifier int
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |