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