public enum InformationRequestType extends Enum<InformationRequestType>
Java class for informationRequestType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="informationRequestType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="ping"/> <enumeration value="telemetry"/> <enumeration value="operating characteristics"/> </restriction> </simpleType>
Enum Constant and Description |
---|
OPERATING_CHARACTERISTICS
Request for the receiving vehicle to provide a summary of its operating characteristics or capabilities.
|
PING
Request for a communications check.
|
TELEMETRY
Request for the receiving vehicle to provide it's telemetry (position and velocity).
|
Modifier and Type | Method and Description |
---|---|
static InformationRequestType |
fromValue(String v) |
String |
value() |
static InformationRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InformationRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InformationRequestType PING
public static final InformationRequestType TELEMETRY
public static final InformationRequestType OPERATING_CHARACTERISTICS
public static InformationRequestType[] values()
for (InformationRequestType c : InformationRequestType.values()) System.out.println(c);
public static InformationRequestType 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 InformationRequestType fromValue(String v)