public enum AcasReplyInformation extends Enum<AcasReplyInformation>
| Enum Constant and Description |
|---|
GREATER_THAN_1200
14 - maximum airspeed is more than 2 220 km/h (1 200 kt)
|
GREATER_THAN_150_LESS_THAN_300
11 - maximum airspeed is .GT.
|
GREATER_THAN_300_LESS_THAN_600
12 - maximum airspeed is .GT.
|
GREATER_THAN_600_LESS_THAN_1200
13 - maximum airspeed is .GT.
|
GREATER_THAN_75_LESS_THAN_150
10 - maximum airspeed is .GT.
|
LESS_THAN_75KT
9 - maximum airspeed is .LE.
|
NO_MAX_SPEED
8 - no maximum airspeed data available
|
NO_OPERATING_ACAS
0 - signifies a reply to an air-air interrogation UF = 0 with AQ = 0, no operating ACAS
|
NOT_ASSIGNED
15 - not assigned
|
RESERVED1
1 - reserved for ACAS
|
RESERVED2
2 - reserved for ACAS
|
RESERVED3
3 - reserved for ACAS
|
RESERVED4
4 - reserved for ACAS
|
RESERVED5
5 - reserved for ACAS
|
RESERVED6
6 - reserved for ACAS
|
RESERVED7
7 - reserved for ACAS
|
| Modifier and Type | Method and Description |
|---|---|
static AcasReplyInformation |
from(int replyInformation) |
int |
getGreaterThan() |
int |
getLessThan() |
boolean |
isMaxAirspeedAvailable() |
static AcasReplyInformation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AcasReplyInformation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcasReplyInformation NO_OPERATING_ACAS
public static final AcasReplyInformation RESERVED1
public static final AcasReplyInformation RESERVED2
public static final AcasReplyInformation RESERVED3
public static final AcasReplyInformation RESERVED4
public static final AcasReplyInformation RESERVED5
public static final AcasReplyInformation RESERVED6
public static final AcasReplyInformation RESERVED7
public static final AcasReplyInformation NO_MAX_SPEED
public static final AcasReplyInformation LESS_THAN_75KT
public static final AcasReplyInformation GREATER_THAN_75_LESS_THAN_150
public static final AcasReplyInformation GREATER_THAN_150_LESS_THAN_300
public static final AcasReplyInformation GREATER_THAN_300_LESS_THAN_600
public static final AcasReplyInformation GREATER_THAN_600_LESS_THAN_1200
public static final AcasReplyInformation GREATER_THAN_1200
public static final AcasReplyInformation NOT_ASSIGNED
public static AcasReplyInformation[] values()
for (AcasReplyInformation c : AcasReplyInformation.values()) System.out.println(c);
public static AcasReplyInformation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static AcasReplyInformation from(int replyInformation)
public boolean isMaxAirspeedAvailable()
public int getLessThan()
public int getGreaterThan()
Copyright © 2020. All rights reserved.