public static enum ASTKepler.TrueAnomalyType extends java.lang.Enum<ASTKepler.TrueAnomalyType>
Enum Constant and Description |
---|
SOLVE_EQ_OF_CENTER
Solve equation of the center
|
SOLVE_NEWTON_METHOD_KEPLER
Solver Kepler's equation by Newton's method
|
SOLVE_SIMPLE_ITERATION_KEPLER
Solve Kepler's equation by simple iteration
|
Modifier and Type | Method and Description |
---|---|
static ASTKepler.TrueAnomalyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ASTKepler.TrueAnomalyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTKepler.TrueAnomalyType SOLVE_EQ_OF_CENTER
public static final ASTKepler.TrueAnomalyType SOLVE_SIMPLE_ITERATION_KEPLER
public static final ASTKepler.TrueAnomalyType SOLVE_NEWTON_METHOD_KEPLER
public static ASTKepler.TrueAnomalyType[] values()
for (ASTKepler.TrueAnomalyType c : ASTKepler.TrueAnomalyType.values()) System.out.println(c);
public static ASTKepler.TrueAnomalyType 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