Enum SbasId
- java.lang.Object
-
- java.lang.Enum<SbasId>
-
- org.orekit.files.rinex.navigation.SbasId
-
- All Implemented Interfaces:
Serializable
,Comparable<SbasId>
public enum SbasId extends Enum<SbasId>
Enumerate for the SBAS ids.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description A_SBAS
African Satellite-Based Augmentation System (ASECNA).BDSBAS
BeiDou Satellite-based Augmentation System.EGNOS
European Geostationary Navigation Overlay Service.GAGAN
GPS Aided Geo Augmented Navigation.KASS
Korea Augmentation Satellite System.MSAS
Multi-functional Satellite Augmentation System.SACCSA
Soluciόn de Aumentaciόn para Caribe, Centro y Sudamérica.SDCM
System for Differential Corrections and Monitoring.SPAN
Southern Positioning Augmentation System.WAAS
Wide Area Augmentation System.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SbasId
valueOf(String name)
Returns the enum constant of this type with the specified name.static SbasId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WAAS
public static final SbasId WAAS
Wide Area Augmentation System.
-
EGNOS
public static final SbasId EGNOS
European Geostationary Navigation Overlay Service.
-
MSAS
public static final SbasId MSAS
Multi-functional Satellite Augmentation System.
-
GAGAN
public static final SbasId GAGAN
GPS Aided Geo Augmented Navigation.
-
SDCM
public static final SbasId SDCM
System for Differential Corrections and Monitoring.
-
BDSBAS
public static final SbasId BDSBAS
BeiDou Satellite-based Augmentation System.
-
SACCSA
public static final SbasId SACCSA
Soluciόn de Aumentaciόn para Caribe, Centro y Sudamérica.
-
KASS
public static final SbasId KASS
Korea Augmentation Satellite System.
-
A_SBAS
public static final SbasId A_SBAS
African Satellite-Based Augmentation System (ASECNA).
-
SPAN
public static final SbasId SPAN
Southern Positioning Augmentation System.
-
-
Method Detail
-
values
public static SbasId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SbasId c : SbasId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SbasId valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-