public enum LongestRunwaySurfaceCode extends Enum<LongestRunwaySurfaceCode>
Java class for LongestRunwaySurfaceCode.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="LongestRunwaySurfaceCode">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Hard"/>
     <enumeration value="Soft"/>
     <enumeration value="Water"/>
     <enumeration value="Undefined"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| HARDHard Surface, for example, asphalt or concrete | 
| SOFTSoft Surface, for example, gravel, grass or soil | 
| UNDEFINEDUndefined, surface material not provided in source | 
| WATERWater Runway | 
| Modifier and Type | Method and Description | 
|---|---|
| static LongestRunwaySurfaceCode | fromValue(String v) | 
| String | value() | 
| static LongestRunwaySurfaceCode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LongestRunwaySurfaceCode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LongestRunwaySurfaceCode HARD
public static final LongestRunwaySurfaceCode SOFT
public static final LongestRunwaySurfaceCode WATER
public static final LongestRunwaySurfaceCode UNDEFINED
public static LongestRunwaySurfaceCode[] values()
for (LongestRunwaySurfaceCode c : LongestRunwaySurfaceCode.values()) System.out.println(c);
public static LongestRunwaySurfaceCode 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 LongestRunwaySurfaceCode fromValue(String v)
Copyright © 2017. All rights reserved.