Enum AcasSensitivity

java.lang.Object
java.lang.Enum<AcasSensitivity>
aero.t2s.modes.constants.AcasSensitivity
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AcasSensitivity>, java.lang.constant.Constable

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

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • 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

    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, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

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

    • INOP

      public static final AcasSensitivity INOP
      0 - ACAS inoperative
    • 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 Details

    • values

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

      public static AcasSensitivity from​(int sensitivity)