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