Serializable
, Comparable<SatelliteSystem>
public enum SatelliteSystem extends Enum<SatelliteSystem>
Enum Constant | Description |
---|---|
BEIDOU |
Beidou system.
|
GALILEO |
Galileo system.
|
GLONASS |
GLONASS system.
|
GPS |
GPS system.
|
IRNSS |
Indian Regional Navigation Satellite System system.
|
MIXED |
Mixed system.
|
QZSS |
Quasi-Zenith Satellite System system.
|
SBAS |
SBAS system.
|
Modifier and Type | Method | Description |
---|---|---|
char |
getKey() |
Get the key for the system.
|
static SatelliteSystem |
parseSatelliteSystem(String s) |
Parse a string to get the satellite system.
|
static SatelliteSystem |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SatelliteSystem[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SatelliteSystem GPS
public static final SatelliteSystem GLONASS
public static final SatelliteSystem GALILEO
public static final SatelliteSystem BEIDOU
public static final SatelliteSystem QZSS
public static final SatelliteSystem IRNSS
public static final SatelliteSystem SBAS
public static final SatelliteSystem MIXED
public static SatelliteSystem[] values()
for (SatelliteSystem c : SatelliteSystem.values()) System.out.println(c);
public static SatelliteSystem 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 getKey()
public static SatelliteSystem parseSatelliteSystem(String s) throws OrekitIllegalArgumentException
The string first character must be the satellite system.
s
- string to parseOrekitIllegalArgumentException
- if the string does not correspond to a satellite system keyCopyright © 2002-2019 CS Systèmes d'information. All rights reserved.