Package gaiasky.scene.component
Enum Class Trajectory.OrbitOrientationModel
java.lang.Object
java.lang.Enum<Trajectory.OrbitOrientationModel>
gaiasky.scene.component.Trajectory.OrbitOrientationModel
- All Implemented Interfaces:
Serializable
,Comparable<Trajectory.OrbitOrientationModel>
,Constable
- Enclosing class:
- Trajectory
Orientation model for this orbit/trajectory.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionEquatorial plane is the reference plane, and aries (vernal equinox) is the reference direction.Extrasolar systems are typically specified using elements in a special reference system. -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
Returns the enum constant of this class with the specified name.static Trajectory.OrbitOrientationModel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Equatorial plane is the reference plane, and aries (vernal equinox) is the reference direction. -
EXTRASOLAR_SYSTEM
Extrasolar systems are typically specified using elements in a special reference system. In this reference system, the reference plane is the plane whose normal is the line of sight vector from the Sun to the planet or star for whom the orbit is defined. The reference direction is the direction from the object to the north celestial pole projected on the reference plane.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
isDefault
public boolean isDefault() -
isExtrasolar
public boolean isExtrasolar()
-