Enum BeidouSatelliteType
- java.lang.Object
-
- java.lang.Enum<BeidouSatelliteType>
-
- org.orekit.propagation.analytical.gnss.data.BeidouSatelliteType
-
- All Implemented Interfaces:
Serializable
,Comparable<BeidouSatelliteType>
public enum BeidouSatelliteType extends Enum<BeidouSatelliteType>
Enumerate for Beidou satellite type.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BeidouSatelliteType
valueOf(String name)
Returns the enum constant of this type with the specified name.static BeidouSatelliteType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESERVED
public static final BeidouSatelliteType RESERVED
Reserved.
-
GEO
public static final BeidouSatelliteType GEO
Geostationary satellite.
-
IGSO
public static final BeidouSatelliteType IGSO
Inclined geosynchronous.
-
MEO
public static final BeidouSatelliteType MEO
Middle Earth Orbit.
-
-
Method Detail
-
values
public static BeidouSatelliteType[] 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 (BeidouSatelliteType c : BeidouSatelliteType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BeidouSatelliteType 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
-
-