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