protected static enum ChapMenuItems.CalculationType extends java.lang.Enum<ChapMenuItems.CalculationType>
Enum Constant and Description |
---|
LOAD_ORBITAL_ELEMENTS
Load Moon's orbital elements from a disk file
|
MOON_DIST_AND_ANG_DIAMETER
Calculate lunar distance and angular diameter
|
MOON_LOCATION
Calculate the Moon's location
|
MOON_PERCENT_ILLUMINATED
Calculate how much of the Moon is illuminated
|
MOON_PHASES_AND_AGE
Calculate Moon's phases and age
|
MOON_RISE_SET
Calculate Moonrise/Moonset
|
SHOW_ORBITAL_ELEMENTS
Display the Moon's orbital elements
|
TERM_CRITERIA
Set a termination criteria for solving Kepler's equation
|
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 MOON_LOCATION
public static final ChapMenuItems.CalculationType MOON_RISE_SET
public static final ChapMenuItems.CalculationType MOON_DIST_AND_ANG_DIAMETER
public static final ChapMenuItems.CalculationType MOON_PHASES_AND_AGE
public static final ChapMenuItems.CalculationType MOON_PERCENT_ILLUMINATED
public static final ChapMenuItems.CalculationType TERM_CRITERIA
public static final ChapMenuItems.CalculationType LOAD_ORBITAL_ELEMENTS
public static final ChapMenuItems.CalculationType SHOW_ORBITAL_ELEMENTS
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