Enum AdasController.AccelerometerSensitivity
- java.lang.Object
-
- java.lang.Enum<AdasController.AccelerometerSensitivity>
-
- com.navmii.android.dashcamsdk.adas.AdasController.AccelerometerSensitivity
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AdasController.AccelerometerSensitivity>
- Enclosing interface:
- AdasController
public static enum AdasController.AccelerometerSensitivity extends java.lang.Enum<AdasController.AccelerometerSensitivity>
The sensitivity of accelerometer.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetThreshold()static AdasController.AccelerometerSensitivityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AdasController.AccelerometerSensitivity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW
public static final AdasController.AccelerometerSensitivity LOW
-
MEDIUM
public static final AdasController.AccelerometerSensitivity MEDIUM
-
HIGH
public static final AdasController.AccelerometerSensitivity HIGH
-
-
Method Detail
-
values
public static AdasController.AccelerometerSensitivity[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AdasController.AccelerometerSensitivity c : AdasController.AccelerometerSensitivity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdasController.AccelerometerSensitivity valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getThreshold
public int getThreshold()
-
-