java.lang.Object
java.lang.Enum<Orbit.Stat>
org.scictrl.csshell.epics.server.application.orbitserver.Orbit.Stat
All Implemented Interfaces:
Serializable, Comparable<Orbit.Stat>, Constable
Enclosing class:
Orbit

public static enum Orbit.Stat extends Enum<Orbit.Stat>
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

    Enum Constants
    Enum Constant
    Description
    Average value field.
    Maximum value field.
    RMS, root-mean-square value field.
    STD, standard deviation value field.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static 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 Type
    Method
    Description
    static Orbit.Stat
    Returns the enum constant of this class with the specified name.
    static Orbit.Stat[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • AVG

      public static final Orbit.Stat AVG
      Average value field.
    • RMS

      public static final Orbit.Stat RMS
      RMS, root-mean-square value field.
    • STD

      public static final Orbit.Stat STD
      STD, standard deviation value field.
    • MAX

      public static final Orbit.Stat MAX
      Maximum value field.
  • Field Details

    • _AVG

      public static final int _AVG
      Average value field, as array index.
      See Also:
    • _RMS

      public static final int _RMS
      RMS, root-mean-square value field, as array index.
      See Also:
    • _STD

      public static final int _STD
      Maximum value field, as array index.
      See Also:
    • _MAX

      public static final int _MAX
      STD, standard deviation value field, as array index.
      See Also:
  • Method Details

    • values

      public static Orbit.Stat[] 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

      public static Orbit.Stat valueOf(String name)
      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 name
      NullPointerException - if the argument is null