public static enum GNSSentence.Mode extends Enum<GNSSentence.Mode>
FaaMode
and GpsFixQuality
with some values omitted.Enum Constant and Description |
---|
AUTOMATIC
Operating in autonomous mode (automatic 2D/3D).
|
DGPS
Operating in differential mode (DGPS).
|
ESTIMATED
Operating in estimating mode (dead-reckoning).
|
FRTK
Float RTK, satellite system used in real time kinematic mode with floating integers.
|
MANUAL
Operating in manual mode (forced 2D or 3D).
|
NONE
No valid GPS data available.
|
PRECISE
Precise mode, no deliberate degradation like Selective Availability (NMEA 4.00 and later).
|
RTK
Real Time Kinetic, satellite system used in RTK mode with fixed integers.
|
SIMULATED
Simulated data (running in simulator/demo mode)
|
Modifier and Type | Method and Description |
---|---|
char |
toChar() |
static GNSSentence.Mode |
valueOf(char ch) |
static GNSSentence.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GNSSentence.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GNSSentence.Mode AUTOMATIC
public static final GNSSentence.Mode MANUAL
public static final GNSSentence.Mode DGPS
public static final GNSSentence.Mode ESTIMATED
public static final GNSSentence.Mode RTK
public static final GNSSentence.Mode FRTK
public static final GNSSentence.Mode PRECISE
public static final GNSSentence.Mode SIMULATED
public static final GNSSentence.Mode NONE
public static GNSSentence.Mode[] values()
for (GNSSentence.Mode c : GNSSentence.Mode.values()) System.out.println(c);
public static GNSSentence.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic char toChar()
public static GNSSentence.Mode valueOf(char ch)
Copyright (C) 2010-2017 Java Marine API authors. All Rights Reserved.