public enum RunwaySurfaceCode extends Enum<RunwaySurfaceCode>
Java class for RunwaySurfaceCode.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="RunwaySurfaceCode">
   <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 RunwaySurfaceCode | fromValue(String v) | 
| String | value() | 
| static RunwaySurfaceCode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RunwaySurfaceCode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RunwaySurfaceCode HARD
public static final RunwaySurfaceCode SOFT
public static final RunwaySurfaceCode WATER
public static final RunwaySurfaceCode UNDEFINED
public static RunwaySurfaceCode[] values()
for (RunwaySurfaceCode c : RunwaySurfaceCode.values()) System.out.println(c);
public static RunwaySurfaceCode 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 RunwaySurfaceCode fromValue(String v)
Copyright © 2020. All rights reserved.