public enum UuvCapabilityType extends Enum<UuvCapabilityType>
Java class for uuvCapabilityType.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="uuvCapabilityType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="thrusterPowered"/>
     <enumeration value="seaglider"/>
     <enumeration value="bodyThrustersInstalled"/>
     <enumeration value="hoverCapable"/>
     <enumeration value="stationCapable"/>
     <enumeration value="altitudeCapable"/>
     <enumeration value="communicationsCapable"/>
     <enumeration value="underwaterCommunicationsCapable"/>
     <enumeration value="satelliteCommunicationsCapable"/>
     <enumeration value="gpsCapable"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| ALTITUDE_CAPABLE | 
| BODY_THRUSTERS_INSTALLED | 
| COMMUNICATIONS_CAPABLE | 
| GPS_CAPABLE | 
| HOVER_CAPABLE | 
| SATELLITE_COMMUNICATIONS_CAPABLE | 
| SEAGLIDER | 
| STATION_CAPABLE | 
| THRUSTER_POWERED | 
| UNDERWATER_COMMUNICATIONS_CAPABLE | 
| Modifier and Type | Method and Description | 
|---|---|
| static UuvCapabilityType | fromValue(String v) | 
| String | value() | 
| static UuvCapabilityType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static UuvCapabilityType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final UuvCapabilityType THRUSTER_POWERED
public static final UuvCapabilityType SEAGLIDER
public static final UuvCapabilityType BODY_THRUSTERS_INSTALLED
public static final UuvCapabilityType HOVER_CAPABLE
public static final UuvCapabilityType STATION_CAPABLE
public static final UuvCapabilityType ALTITUDE_CAPABLE
public static final UuvCapabilityType COMMUNICATIONS_CAPABLE
public static final UuvCapabilityType UNDERWATER_COMMUNICATIONS_CAPABLE
public static final UuvCapabilityType SATELLITE_COMMUNICATIONS_CAPABLE
public static final UuvCapabilityType GPS_CAPABLE
public static UuvCapabilityType[] values()
for (UuvCapabilityType c : UuvCapabilityType.values()) System.out.println(c);
public static UuvCapabilityType 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 UuvCapabilityType fromValue(String v)