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