public enum UavCapabilityType extends Enum<UavCapabilityType>
Java class for uavCapabilityType.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="uavCapabilityType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="fixedWing"/>
     <enumeration value="rotaryWing"/>
     <enumeration value="singleEngine"/>
     <enumeration value="multiEngine"/>
     <enumeration value="satelliteCommunicationsCapable"/>
     <enumeration value="gpsCapable"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| FIXED_WING | 
| GPS_CAPABLE | 
| MULTI_ENGINE | 
| ROTARY_WING | 
| SATELLITE_COMMUNICATIONS_CAPABLE | 
| SINGLE_ENGINE | 
| Modifier and Type | Method and Description | 
|---|---|
| static UavCapabilityType | fromValue(String v) | 
| String | value() | 
| static UavCapabilityType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static UavCapabilityType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final UavCapabilityType FIXED_WING
public static final UavCapabilityType ROTARY_WING
public static final UavCapabilityType SINGLE_ENGINE
public static final UavCapabilityType MULTI_ENGINE
public static final UavCapabilityType SATELLITE_COMMUNICATIONS_CAPABLE
public static final UavCapabilityType GPS_CAPABLE
public static UavCapabilityType[] values()
for (UavCapabilityType c : UavCapabilityType.values()) System.out.println(c);
public static UavCapabilityType 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 UavCapabilityType fromValue(String v)