public enum UsedOn extends Enum<UsedOn>
Java class for UsedOn.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UsedOn"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="A"/> <enumeration value="E"/> <enumeration value="H"/> <enumeration value="B"/> <enumeration value="C"/> </restriction> </simpleType>
Enum Constant and Description |
---|
A
Type is used on Airport Communication Records only
|
B
Type is used on Airport, Heliport and Enroute Communication Records
|
C
Type is used on Airport and Heliport Communication Records
|
E
Type is used on Enroute Communication Records only
|
H
Type is used on Heliport Communication Records only
|
Modifier and Type | Method and Description |
---|---|
static UsedOn |
fromValue(String v) |
String |
value() |
static UsedOn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UsedOn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UsedOn A
public static final UsedOn E
public static final UsedOn H
public static final UsedOn B
public static final UsedOn C
public static UsedOn[] values()
for (UsedOn c : UsedOn.values()) System.out.println(c);
public static UsedOn 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()
Copyright © 2017. All rights reserved.