Enum AcasSensitivity

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<AcasSensitivity>

    public enum AcasSensitivity
    extends java.lang.Enum<AcasSensitivity>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      INOP
      0 - ACAS inoperative
      LEVEL1
      1 - ACAS is operating at sensitivity level 1
      LEVEL2
      2 - ACAS is operating at sensitivity level 2
      LEVEL3
      3 - ACAS is operating at sensitivity level 3
      LEVEL4
      4 - ACAS is operating at sensitivity level 4
      LEVEL5
      5 - ACAS is operating at sensitivity level 5
      LEVEL6
      6 - ACAS is operating at sensitivity level 6
      LEVEL7
      7 - ACAS is operating at sensitivity level 7
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static AcasSensitivity from​(int sensitivity)  
      static AcasSensitivity valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AcasSensitivity[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

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

      • LEVEL1

        public static final AcasSensitivity LEVEL1
        1 - ACAS is operating at sensitivity level 1
      • LEVEL2

        public static final AcasSensitivity LEVEL2
        2 - ACAS is operating at sensitivity level 2
      • LEVEL3

        public static final AcasSensitivity LEVEL3
        3 - ACAS is operating at sensitivity level 3
      • LEVEL4

        public static final AcasSensitivity LEVEL4
        4 - ACAS is operating at sensitivity level 4
      • LEVEL5

        public static final AcasSensitivity LEVEL5
        5 - ACAS is operating at sensitivity level 5
      • LEVEL6

        public static final AcasSensitivity LEVEL6
        6 - ACAS is operating at sensitivity level 6
      • LEVEL7

        public static final AcasSensitivity LEVEL7
        7 - ACAS is operating at sensitivity level 7
    • Method Detail

      • values

        public static AcasSensitivity[] 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 (AcasSensitivity c : AcasSensitivity.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AcasSensitivity valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null