protected static enum ChapMenuItems.CalculationType extends java.lang.Enum<ChapMenuItems.CalculationType>
Enum Constant and Description |
---|
ECLIPTIC_EQUATORIAL
convert Ecliptic Coordinates to Equatorial
|
EQUATORIAL_ECLIPTIC
convert Equatorial Coordinates to Ecliptic
|
EQUATORIAL_GALACTIC
convert Equatorial Coordinates to Galactic
|
EQUATORIAL_HORIZON
convert Equatorial Coordinates to Horizon
|
GALACTIC_EQUATORIAL
convert Galactic Coordinates to Equatorial
|
HA_RA
convert Hour Angle to Right Ascension
|
HORIZON_EQUATORIAL
convert Horizon Coordinates to Equatorial
|
KEPLER_NEWTON
use Newton's method to solve Kepler's equation
|
KEPLER_SIMPLE
use simple iteration to solve Kepler's equation
|
NO_CALC_SELECTED
no calculation is currently selected
|
PRECESSION_CORR
perform a precession correction
|
RA_HA
convert Right Ascension to Hour Angle
|
Modifier and Type | Method and Description |
---|---|
static ChapMenuItems.CalculationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChapMenuItems.CalculationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChapMenuItems.CalculationType NO_CALC_SELECTED
public static final ChapMenuItems.CalculationType HA_RA
public static final ChapMenuItems.CalculationType RA_HA
public static final ChapMenuItems.CalculationType HORIZON_EQUATORIAL
public static final ChapMenuItems.CalculationType EQUATORIAL_HORIZON
public static final ChapMenuItems.CalculationType ECLIPTIC_EQUATORIAL
public static final ChapMenuItems.CalculationType EQUATORIAL_ECLIPTIC
public static final ChapMenuItems.CalculationType GALACTIC_EQUATORIAL
public static final ChapMenuItems.CalculationType EQUATORIAL_GALACTIC
public static final ChapMenuItems.CalculationType PRECESSION_CORR
public static final ChapMenuItems.CalculationType KEPLER_SIMPLE
public static final ChapMenuItems.CalculationType KEPLER_NEWTON
public static ChapMenuItems.CalculationType[] values()
for (ChapMenuItems.CalculationType c : ChapMenuItems.CalculationType.values()) System.out.println(c);
public static ChapMenuItems.CalculationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null