Serializable
, Comparable<PositionAngle>
public enum PositionAngle extends Enum<PositionAngle>
KeplerianOrbit
,
CircularOrbit
,
EquinoctialOrbit
Enum Constant | Description |
---|---|
ECCENTRIC |
Eccentric angle.
|
MEAN |
Mean angle.
|
TRUE |
True angle.
|
Modifier and Type | Method | Description |
---|---|---|
static PositionAngle |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static PositionAngle[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PositionAngle MEAN
public static final PositionAngle ECCENTRIC
public static final PositionAngle TRUE
public static PositionAngle[] values()
for (PositionAngle c : PositionAngle.values()) System.out.println(c);
public static PositionAngle 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-2019 CS Systèmes d'information. All rights reserved.