public enum ICapabilitiesSensor extends java.lang.Enum<ICapabilitiesSensor>
| Enum Constant and Description |
|---|
Accelerometer |
AmbientLight |
Barometer |
Geolocation |
Gyroscope |
Magnetometer |
Proximity |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static ICapabilitiesSensor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ICapabilitiesSensor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICapabilitiesSensor Accelerometer
public static final ICapabilitiesSensor AmbientLight
public static final ICapabilitiesSensor Barometer
public static final ICapabilitiesSensor Geolocation
public static final ICapabilitiesSensor Gyroscope
public static final ICapabilitiesSensor Magnetometer
public static final ICapabilitiesSensor Proximity
public static final ICapabilitiesSensor Unknown
public static ICapabilitiesSensor[] values()
for (ICapabilitiesSensor c : ICapabilitiesSensor.values()) System.out.println(c);
public static ICapabilitiesSensor 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 null