Package com.ctre.phoenix.sensors
Enum Class MagnetFieldStrength
- All Implemented Interfaces:
Serializable
,Comparable<MagnetFieldStrength>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMagnet field is adequate, sensor can be used in this range with slightly reduced accuracy.Magnet field is far too low (too far) or far too high (too close).Magnet field is idealMagnet Field strength cannot be determined -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic MagnetFieldStrength
valueOf
(int value) public lookup to convert int to enumstatic MagnetFieldStrength
Returns the enum constant of this class with the specified name.static MagnetFieldStrength[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Invalid_Unknown
Magnet Field strength cannot be determined -
BadRange_RedLED
Magnet field is far too low (too far) or far too high (too close). -
Adequate_OrangeLED
Magnet field is adequate, sensor can be used in this range with slightly reduced accuracy. -
Good_GreenLED
Magnet field is ideal
-
-
Field Details
-
value
-
-
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
-
valueOf
public lookup to convert int to enum
-