Package edu.wpi.first.wpilibj
Enum ADIS16448_IMU.CalibrationTime
- All Implemented Interfaces:
Serializable
,Comparable<ADIS16448_IMU.CalibrationTime>
,Constable
- Enclosing class:
- ADIS16448_IMU
public static enum ADIS16448_IMU.CalibrationTime extends Enum<ADIS16448_IMU.CalibrationTime>
ADIS16448 calibration times.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description _128ms
128 ms calibration time_16s
16 s calibration time_1s
1 s calibration time_256ms
256 ms calibration time_2s
2 s calibration time_32ms
32 ms calibration time_32s
32 s calibration time_4s
4 s calibration time_512ms
512 ms calibration time_64ms
64 ms calibration time_64s
64 s calibration time_8s
8 s calibration time -
Method Summary
Modifier and Type Method Description static ADIS16448_IMU.CalibrationTime
valueOf(String name)
Returns the enum constant of this type with the specified name.static ADIS16448_IMU.CalibrationTime[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
_32ms
32 ms calibration time -
_64ms
64 ms calibration time -
_128ms
128 ms calibration time -
_256ms
256 ms calibration time -
_512ms
512 ms calibration time -
_1s
1 s calibration time -
_2s
2 s calibration time -
_4s
4 s calibration time -
_8s
8 s calibration time -
_16s
16 s calibration time -
_32s
32 s calibration time -
_64s
64 s calibration time
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-