Enum Class Orbit.Stat
- All Implemented Interfaces:
Serializable
,Comparable<Orbit.Stat>
,Constable
- Enclosing class:
Orbit
Enum defining statistics field constants.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Average value field, as array index.static final int
STD, standard deviation value field, as array index.static final int
RMS, root-mean-square value field, as array index.static final int
Maximum value field, as array index. -
Method Summary
Modifier and TypeMethodDescriptionstatic Orbit.Stat
Returns the enum constant of this class with the specified name.static Orbit.Stat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AVG
Average value field. -
RMS
RMS, root-mean-square value field. -
STD
STD, standard deviation value field. -
MAX
Maximum value field.
-
-
Field Details
-
_AVG
public static final int _AVGAverage value field, as array index.- See Also:
-
_RMS
public static final int _RMSRMS, root-mean-square value field, as array index.- See Also:
-
_STD
public static final int _STDMaximum value field, as array index.- See Also:
-
_MAX
public static final int _MAXSTD, standard deviation value field, as array index.- See Also:
-
-
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
-