Package com.flir.thermalsdk.live.remote
Enum Class Calibration.ShutterState
- All Implemented Interfaces:
Serializable
,Comparable<Calibration.ShutterState>
,Constable
- Enclosing class:
- Calibration
Camera shutter status monitoring interface.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that a corrupted/invalid shutter state was detected.Represents an invalid shutter state.Represents the NUC state of the hardware shutter.Represents the "device powered off" shutter state.Represents the "device powered on" state of the hardware shutter.Indicates a unknown state. -
Method Summary
Modifier and TypeMethodDescriptionstatic Calibration.ShutterState
Returns the enum constant of this class with the specified name.static Calibration.ShutterState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INVALID
Represents an invalid shutter state. This value should be treated as an error. -
OFF
Represents the "device powered off" shutter state. -
ON
Represents the "device powered on" state of the hardware shutter. -
NUC
Represents the NUC state of the hardware shutter. -
BAD
Indicates that a corrupted/invalid shutter state was detected. -
UNKNOWN
Indicates a unknown state.
-
-
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
-