Package org.orekit.orbits
Enum PositionAngleType
- java.lang.Object
-
- java.lang.Enum<PositionAngleType>
-
- org.orekit.orbits.PositionAngleType
-
- All Implemented Interfaces:
Serializable
,Comparable<PositionAngleType>
public enum PositionAngleType extends Enum<PositionAngleType>
Enumerate for true, eccentric and mean position angles.- Author:
- Luc Maisonobe
- See Also:
KeplerianOrbit
,CircularOrbit
,EquinoctialOrbit
,FieldKeplerianOrbit
,FieldCircularOrbit
,FieldEquinoctialOrbit
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
MEAN
public static final PositionAngleType MEAN
Mean angle.
-
ECCENTRIC
public static final PositionAngleType ECCENTRIC
Eccentric angle.
-
TRUE
public static final PositionAngleType TRUE
True angle.
-
-
Method Detail
-
values
public static PositionAngleType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PositionAngleType c : PositionAngleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PositionAngleType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-