public static enum IMUReport.Accuracy extends Enum<IMUReport.Accuracy>
| Enum Constant and Description |
|---|
HIGH |
LOW |
MEDIUM |
UNRELIABLE |
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
IMUReport.Accuracy |
intern() |
String |
toString() |
static IMUReport.Accuracy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IMUReport.Accuracy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMUReport.Accuracy UNRELIABLE
public static final IMUReport.Accuracy LOW
public static final IMUReport.Accuracy MEDIUM
public static final IMUReport.Accuracy HIGH
public static IMUReport.Accuracy[] values()
for (IMUReport.Accuracy c : IMUReport.Accuracy.values()) System.out.println(c);
public static IMUReport.Accuracy 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 IMUReport.Accuracy intern()
public String toString()
toString in class Enum<IMUReport.Accuracy>Copyright © 2021. All rights reserved.