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="AirportComms"/>
     <enumeration value="EnrouteComms"/>
     <enumeration value="HeliportComms"/>
     <enumeration value="AirportHeliportEnrouteComms"/>
     <enumeration value="AirportHeliportComms"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| AIRPORT_COMMSType is used on Airport Communication Records only | 
| AIRPORT_HELIPORT_COMMSType is used on Airport and Heliport Communication Records | 
| AIRPORT_HELIPORT_ENROUTE_COMMSType is used on Airport, Heliport and Enroute Communication Records | 
| ENROUTE_COMMSType is used on Enroute Communication Records only | 
| HELIPORT_COMMSType 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 AIRPORT_COMMS
public static final UsedOn ENROUTE_COMMS
public static final UsedOn HELIPORT_COMMS
public static final UsedOn AIRPORT_HELIPORT_ENROUTE_COMMS
public static final UsedOn AIRPORT_HELIPORT_COMMS
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 © 2020. All rights reserved.