Enum AcasReplyInformation

    • Enum Constant Detail

      • NO_OPERATING_ACAS

        public static final AcasReplyInformation NO_OPERATING_ACAS
        0 - signifies a reply to an air-air interrogation UF = 0 with AQ = 0, no operating ACAS
      • NO_MAX_SPEED

        public static final AcasReplyInformation NO_MAX_SPEED
        8 - no maximum airspeed data available
      • LESS_THAN_75KT

        public static final AcasReplyInformation LESS_THAN_75KT
        9 - maximum airspeed is .LE. 140 km/h (75 kt)
      • GREATER_THAN_75_LESS_THAN_150

        public static final AcasReplyInformation GREATER_THAN_75_LESS_THAN_150
        10 - maximum airspeed is .GT. 140 and .LE. 280 km/h (75 and 150 kt)
      • GREATER_THAN_150_LESS_THAN_300

        public static final AcasReplyInformation GREATER_THAN_150_LESS_THAN_300
        11 - maximum airspeed is .GT. 280 and .LE. 560 km/h (150 and 300 kt)
      • GREATER_THAN_300_LESS_THAN_600

        public static final AcasReplyInformation GREATER_THAN_300_LESS_THAN_600
        12 - maximum airspeed is .GT. 560 and .LE. 1 110 km/h (300 and 600 kt)
      • GREATER_THAN_600_LESS_THAN_1200

        public static final AcasReplyInformation GREATER_THAN_600_LESS_THAN_1200
        13 - maximum airspeed is .GT. 1 110 and .LE. 2 220 km/h (600 and 1 200 kt)
      • GREATER_THAN_1200

        public static final AcasReplyInformation GREATER_THAN_1200
        14 - maximum airspeed is more than 2 220 km/h (1 200 kt)
    • Method Detail

      • values

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

        public static AcasReplyInformation 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
      • isMaxAirspeedAvailable

        public boolean isMaxAirspeedAvailable()
      • getLessThan

        public int getLessThan()
      • getGreaterThan

        public int getGreaterThan()