public enum CommunicationClass extends Enum<CommunicationClass>
Java class for CommunicationClass.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CommunicationClass"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="LIRC"/> <enumeration value="LIRI"/> <enumeration value="USVC"/> <enumeration value="ASVC"/> <enumeration value="ATCF"/> <enumeration value="GNDF"/> <enumeration value="AOTF"/> <enumeration value="AFAC"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AFAC
The Communication Type is that of one provided automated or broadcast services to aircraft on the ground or with the terminal area of an airport.
|
AOTF
The Communication Type is that of one providing services other than ATC functions on the ground or within the terminal area of an airport.
|
ASVC
The Communication Type is that of one providing automated or broadcast services within an Information Region (FIR/UIR).
|
ATCF
The Communication Type is that of one providing ATC services to aircraft within the terminal area of an airport.
|
GNDF
The Communication Type is that of one providing ATC services to aircraft on the ground at an airport.
|
LIRC
The Communication Type is that of one linked to an Information Region (FIR/UIR) for the purposes of providing control services to aircraft.
|
LIRI
The Communication Type is that of one linked to an Information Region (FIR/UIR) for the purposes of providing information services to aircraft.
|
USVC
The Communication Type is that of one used within an Information Region (FIR/UIR) for purposes other than control or information services and is not linked to that Region
|
Modifier and Type | Method and Description |
---|---|
static CommunicationClass |
fromValue(String v) |
String |
value() |
static CommunicationClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommunicationClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommunicationClass LIRC
public static final CommunicationClass LIRI
public static final CommunicationClass USVC
public static final CommunicationClass ASVC
public static final CommunicationClass ATCF
public static final CommunicationClass GNDF
public static final CommunicationClass AOTF
public static final CommunicationClass AFAC
public static CommunicationClass[] values()
for (CommunicationClass c : CommunicationClass.values()) System.out.println(c);
public static CommunicationClass 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 String value()
public static CommunicationClass fromValue(String v)
Copyright © 2017. All rights reserved.