public enum ComponentAffectedIndicator extends Enum<ComponentAffectedIndicator>
Java class for ComponentAffectedIndicator.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="ComponentAffectedIndicator">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="A"/>
     <enumeration value="B"/>
     <enumeration value="D"/>
     <enumeration value="M"/>
     <enumeration value="T"/>
     <enumeration value="V"/>
     <enumeration value="Z"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| ATACAN or VORTAC, TACAN azimuth component only affected. | 
| BVORDME or VORTAC, both azimuth and distance component affected. | 
| DVORDME or DME, distance component only affected. | 
| MVORTAC or TACAN, TACAN azimuth and distance component affected. | 
| TTACAN or VORTAC, distance component affected. | 
| VVOR, VORDME or VORDME, VOR azimuth component affected | 
| ZVOR, VORDME or TACAN, VOR and TACAN azimuth and distance component affected. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ComponentAffectedIndicator | fromValue(String v) | 
| String | value() | 
| static ComponentAffectedIndicator | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ComponentAffectedIndicator[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ComponentAffectedIndicator A
public static final ComponentAffectedIndicator B
public static final ComponentAffectedIndicator D
public static final ComponentAffectedIndicator M
public static final ComponentAffectedIndicator T
public static final ComponentAffectedIndicator V
public static final ComponentAffectedIndicator Z
public static ComponentAffectedIndicator[] values()
for (ComponentAffectedIndicator c : ComponentAffectedIndicator.values()) System.out.println(c);
public static ComponentAffectedIndicator 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 ComponentAffectedIndicator fromValue(String v)
Copyright © 2017. All rights reserved.