public enum InertialFrameId extends Enum<InertialFrameId>
Enum Constant and 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.
|
Modifier and Type | Method and 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.
|
public static final InertialFrameId GCRF
public static final InertialFrameId EME2000
public static final InertialFrameId MOD
public static final InertialFrameId TOD
public static final InertialFrameId VEIS1950
public static InertialFrameId[] values()
for (InertialFrameId c : InertialFrameId.values()) System.out.println(c);
public static InertialFrameId 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 nullCopyright © 2014–2023 CS GROUP. All rights reserved.