Package org.orekit.rugged.api
Enum InertialFrameId
- java.lang.Object
-
- java.lang.Enum<InertialFrameId>
-
- org.orekit.rugged.api.InertialFrameId
-
- All Implemented Interfaces:
Serializable
,Comparable<InertialFrameId>
public enum InertialFrameId extends Enum<InertialFrameId>
Enumerate for inertial frames.- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EME2000
Constant for Earth Mean Equator 2000 frame (aka J2000).GCRF
Constant for Geocentric Celestial Reference Frame.MOD
Constant for Mean Of Date frame, with IERS 96 conventions (Lieske precession).TOD
Constant for True Of Date frame, with IERS 96 conventions (Wahr nutation).VEIS1950
Constant for Veis 1950 frame.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InertialFrameId
valueOf(String name)
Returns the enum constant of this type with the specified name.static InertialFrameId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GCRF
public static final InertialFrameId GCRF
Constant for Geocentric Celestial Reference Frame.
-
EME2000
public static final InertialFrameId EME2000
Constant for Earth Mean Equator 2000 frame (aka J2000).
-
MOD
public static final InertialFrameId MOD
Constant for Mean Of Date frame, with IERS 96 conventions (Lieske precession).
-
TOD
public static final InertialFrameId TOD
Constant for True Of Date frame, with IERS 96 conventions (Wahr nutation).
-
VEIS1950
public static final InertialFrameId VEIS1950
Constant for Veis 1950 frame.
-
-
Method Detail
-
values
public static InertialFrameId[] 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 (InertialFrameId c : InertialFrameId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InertialFrameId 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
-
-