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