public enum NdbNavaidCoverage extends Enum<NdbNavaidCoverage>
Java class for NdbNavaidCoverage.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="NdbNavaidCoverage">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="HighPowerNdb"/>
     <enumeration value="LowPowerNdb"/>
     <enumeration value="Locator"/>
     <enumeration value="NDB"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| HIGH_POWER_NDBHigh-powered NDB. | 
| LOCATORLocator. | 
| LOW_POWER_NDBLow-powered NDB. | 
| NDBNDB. | 
| Modifier and Type | Method and Description | 
|---|---|
| static NdbNavaidCoverage | fromValue(String v) | 
| String | value() | 
| static NdbNavaidCoverage | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static NdbNavaidCoverage[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final NdbNavaidCoverage HIGH_POWER_NDB
public static final NdbNavaidCoverage LOW_POWER_NDB
public static final NdbNavaidCoverage LOCATOR
public static final NdbNavaidCoverage NDB
public static NdbNavaidCoverage[] values()
for (NdbNavaidCoverage c : NdbNavaidCoverage.values()) System.out.println(c);
public static NdbNavaidCoverage 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 NdbNavaidCoverage fromValue(String v)
Copyright © 2020. All rights reserved.