public enum IffMode extends Enum<IffMode>
Enum Constant and Description |
---|
MODE_C
Provides 4-digit octal code for aircraft's pressure altitude.
|
MODE_S
Provides multiple information formats to a selective interrogation.
|
MODE1
Provides 2-digit 5-bit mission code.
|
MODE2
Provides 4-digit octal unit code.
|
MODE3
Shared with civilian secondary surveillance radar (SSR).
|
MODE4
Provides a 3-pulse reply to crypto coded challenge.
|
MODE5
Provides a cryptographically secured version of Mode S and ADS-B GPS position.
|
Modifier and Type | Method and Description |
---|---|
static IffMode |
fromString(String value) |
String |
toString() |
static IffMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IffMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IffMode MODE1
public static final IffMode MODE2
public static final IffMode MODE3
public static final IffMode MODE4
public static final IffMode MODE5
public static final IffMode MODE_C
public static final IffMode MODE_S
public static IffMode[] values()
for (IffMode c : IffMode.values()) System.out.println(c);
public static IffMode 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 nullCopyright © 2013–2022. All rights reserved.