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