public enum PositionAngleType extends Enum<PositionAngleType>
KeplerianOrbit
,
CircularOrbit
,
EquinoctialOrbit
,
FieldKeplerianOrbit
,
FieldCircularOrbit
,
FieldEquinoctialOrbit
Enum Constant and Description |
---|
ECCENTRIC
Eccentric angle.
|
MEAN
Mean angle.
|
TRUE
True angle.
|
Modifier and Type | Method and Description |
---|---|
static PositionAngleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PositionAngleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PositionAngleType MEAN
public static final PositionAngleType ECCENTRIC
public static final PositionAngleType TRUE
public static PositionAngleType[] values()
for (PositionAngleType c : PositionAngleType.values()) System.out.println(c);
public static PositionAngleType 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 © 2002-2023 CS GROUP. All rights reserved.