public enum SensorDelay extends java.lang.Enum<SensorDelay>
| Modifier and Type | Method and Description |
|---|---|
int |
getDelay() |
static SensorDelay |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SensorDelay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SensorDelay NORMAL
public static final SensorDelay UI
public static final SensorDelay GAME
public static final SensorDelay FASTEST
public static SensorDelay[] values()
for (SensorDelay c : SensorDelay.values()) System.out.println(c);
public static SensorDelay 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 int getDelay()