public static enum AccelerometerBmi160.StepDetectorMode extends java.lang.Enum<AccelerometerBmi160.StepDetectorMode>
| Enum Constant and Description |
|---|
NORMAL
Default mode with a balance between false positives and false negatives
|
ROBUST
Gives few false positives but eventually more false negatives
|
SENSITIVE
Mode for light weighted persons that gives few false negatives but eventually more false positives
|
| Modifier and Type | Method and Description |
|---|---|
static AccelerometerBmi160.StepDetectorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccelerometerBmi160.StepDetectorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccelerometerBmi160.StepDetectorMode NORMAL
public static final AccelerometerBmi160.StepDetectorMode SENSITIVE
public static final AccelerometerBmi160.StepDetectorMode ROBUST
public static AccelerometerBmi160.StepDetectorMode[] values()
for (AccelerometerBmi160.StepDetectorMode c : AccelerometerBmi160.StepDetectorMode.values()) System.out.println(c);
public static AccelerometerBmi160.StepDetectorMode 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