Enum Class TriadStaticIntervalDetector.Status
java.lang.Object
java.lang.Enum<TriadStaticIntervalDetector.Status>
com.irurueta.navigation.inertial.calibration.intervals.TriadStaticIntervalDetector.Status
- All Implemented Interfaces:
Serializable
,Comparable<TriadStaticIntervalDetector.Status>
,Constable
- Enclosing class:
- TriadStaticIntervalDetector<U extends Enum<?>,
M extends com.irurueta.units.Measurement<U>, T extends Triad<U, M>, D extends TriadStaticIntervalDetector<U, M, T, D, L>, L extends TriadStaticIntervalDetectorListener<U, M, T, D>>
public static enum TriadStaticIntervalDetector.Status
extends Enum<TriadStaticIntervalDetector.Status>
Possible detector status values.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA dynamic interval has been detected, where accelerometer is considered to be subject to substantial movement forces.Detector has failed.Detector is in idle status when it hasn't processed any sample yet.Detector has successfully completed processing samples on the initial static period.Detector is processing samples in the initial static process to determine base noise level.A static interval has been detected, where accelerometer is considered to be subject to no substantial movement forces. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TriadStaticIntervalDetector.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IDLE
Detector is in idle status when it hasn't processed any sample yet. -
INITIALIZING
Detector is processing samples in the initial static process to determine base noise level. -
INITIALIZATION_COMPLETED
Detector has successfully completed processing samples on the initial static period. -
STATIC_INTERVAL
A static interval has been detected, where accelerometer is considered to be subject to no substantial movement forces. -
DYNAMIC_INTERVAL
A dynamic interval has been detected, where accelerometer is considered to be subject to substantial movement forces. -
FAILED
Detector has failed. This happens if accelerometer is subject to sudden movement forces while detector is initializing during the initial static period. When detector has failed, no new samples will be allowed to be processed until detector is reset.
-
-
Constructor Details
-
Status
private Status()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-