public enum JplDEDataIndex extends Enum<JplDEDataIndex> implements Enumeration
Enum Constant and Description |
---|
EARTH_MOON_BARYCENTER
The barycenter of the Earth-Moon system
|
JUPITER
Planet Jupiter
|
LIBRATION
Lunar Libration
|
LUNAR_ANGULAR_VELOCITY
Lunar angular velocity.
|
MARS
Planet Mars
|
MERCURY
Planet Mercury
|
MOON
Earth's Moon in Geocentric coordinates
|
NEPTUNE
Planet Neptune
|
NUMBER_OF_INDEXES
The number of indices in a JPL DE file
|
NUTATION
Earth Nutation
|
PLUTO
Planet Pluto
|
SATURN
Planet Saturn
|
SUN
The sun
|
TERRESTRIAL_TIME_AND_BARYCENTRIC_DYNAMICAL_TIME_DIFFERENCE
The difference between Terrestrial Time and Barycentric Dynamical Time (TT - TDB).
|
URANUS
Planet Uranus
|
VENUS
Planet Venus
|
Modifier and Type | Method and Description |
---|---|
static JplDEDataIndex |
getDefault()
Get the enum constant that is considered to be the default.
|
static JplDEDataIndex |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static JplDEDataIndex |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JplDEDataIndex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JplDEDataIndex MERCURY
public static final JplDEDataIndex VENUS
public static final JplDEDataIndex EARTH_MOON_BARYCENTER
public static final JplDEDataIndex MARS
public static final JplDEDataIndex JUPITER
public static final JplDEDataIndex SATURN
public static final JplDEDataIndex URANUS
public static final JplDEDataIndex NEPTUNE
public static final JplDEDataIndex PLUTO
public static final JplDEDataIndex MOON
public static final JplDEDataIndex SUN
public static final JplDEDataIndex NUTATION
public static final JplDEDataIndex LIBRATION
public static final JplDEDataIndex LUNAR_ANGULAR_VELOCITY
public static final JplDEDataIndex TERRESTRIAL_TIME_AND_BARYCENTRIC_DYNAMICAL_TIME_DIFFERENCE
public static final JplDEDataIndex NUMBER_OF_INDEXES
public static JplDEDataIndex[] values()
for (JplDEDataIndex c : JplDEDataIndex.values()) System.out.println(c);
public static JplDEDataIndex 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 int getValue()
getValue
in interface Enumeration
@Nonnull public static JplDEDataIndex getFromValue(int value)
value
- a numeric value.@Nonnull public static JplDEDataIndex getDefault()