Enum Class Orbit.O
- All Implemented Interfaces:
Serializable
,Comparable<Orbit.O>
,Constable
- Enclosing class:
Orbit
Enum defining orientation constants.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionHorizontal orientation enum.Vertical orientation enum. -
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Horizontal orientation int.static final int
Horizontal orientation int.static final int
Vertical orientation int.static final int
Vertical orientation int.static final Orbit.O
Horizontal orientation enum.static final Orbit.O
Vertical orientation enum. -
Method Summary
-
Enum Constant Details
-
HORIZONTAL
Horizontal orientation enum. -
VERTICAL
Vertical orientation enum.
-
-
Field Details
-
_HORIZONTAL
public static final int _HORIZONTALHorizontal orientation int.- See Also:
-
_VERTICAL
public static final int _VERTICALVertical orientation int.- See Also:
-
_H
public static final int _HHorizontal orientation int.- See Also:
-
_V
public static final int _VVertical orientation int.- See Also:
-
H
Horizontal orientation enum. -
V
Vertical orientation enum.
-
-
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
-