public enum TelemetryType extends java.lang.Enum<TelemetryType> implements JsonSerializable
TelemetryEvent available.| Enum Constant and Description |
|---|
LOG |
MANUAL |
NAVIGATION |
NETWORK |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
asJson()
Returns the object that should be an equivalent representation of itself in json.
|
static TelemetryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TelemetryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TelemetryType LOG
public static final TelemetryType MANUAL
public static final TelemetryType NAVIGATION
public static final TelemetryType NETWORK
public static TelemetryType[] values()
for (TelemetryType c : TelemetryType.values()) System.out.println(c);
public static TelemetryType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.Object asJson()
JsonSerializableasJson in interface JsonSerializable