public enum NavaidLimitationCode extends Enum<NavaidLimitationCode>
Java class for NavaidLimitationCode.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="NavaidLimitationCode">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Coverage"/>
     <enumeration value="Fluctuations"/>
     <enumeration value="Roughness"/>
     <enumeration value="Unreliable"/>
     <enumeration value="Restricted"/>
     <enumeration value="Unusable"/>
     <enumeration value="OutOfTolerance"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| COVERAGECoverage, the limitations are expressed as maximum reception reliability | 
| FLUCTUATIONSFluctuations, radial(s) are affected by course fluctuations. | 
| OUT_OF_TOLERANCEOut of Tolerance in the sector(s), at the altitude(s), at the distance(s) defined. | 
| RESTRICTEDRestricted in the sector(s), at the altitude(s), at the distance(s) defined | 
| ROUGHNESSRoughness, signal roughness experienced in the sector(s) defined. | 
| UNRELIABLEUnreliable in the sector(s), at the altitude(s), at the distance(s) defined. | 
| UNUSABLEUnusable in the sector(s), at the altitude(s), at the distance(s) defined. | 
| Modifier and Type | Method and Description | 
|---|---|
| static NavaidLimitationCode | fromValue(String v) | 
| String | value() | 
| static NavaidLimitationCode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static NavaidLimitationCode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final NavaidLimitationCode COVERAGE
public static final NavaidLimitationCode FLUCTUATIONS
public static final NavaidLimitationCode ROUGHNESS
public static final NavaidLimitationCode UNRELIABLE
public static final NavaidLimitationCode RESTRICTED
public static final NavaidLimitationCode UNUSABLE
public static final NavaidLimitationCode OUT_OF_TOLERANCE
public static NavaidLimitationCode[] values()
for (NavaidLimitationCode c : NavaidLimitationCode.values()) System.out.println(c);
public static NavaidLimitationCode 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 NavaidLimitationCode fromValue(String v)
Copyright © 2020. All rights reserved.