Package com.flir.thermalsdk.live.remote
Enum Class Calibration.NucState
- All Implemented Interfaces:
Serializable
,Comparable<Calibration.NucState>
,Constable
- Enclosing class:
- Calibration
Camera NUC (Non-Uniform Calibration, also known as FFC) 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 NUC state was detected.Indicates that an NUC is desired.Indicates that the *last* NUC (Non-Uniform Calibration) is invalid.Indicates that there is NUC activity in progress.Indicated that approximate radiometric values are being given.Indicates a unknown state.Indicates that thermal pixels are calibrated enough to yield an image, but are not yet radiometrically calibrated.Indicates that thermal pixel values are radiometrically calibrated. -
Method Summary
Modifier and TypeMethodDescriptionstatic Calibration.NucState
Returns the enum constant of this class with the specified name.static Calibration.NucState[]
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
Indicates that the *last* NUC (Non-Uniform Calibration) is invalid. -
PROGRESS
Indicates that there is NUC activity in progress. -
VALID_RAD
Indicates that thermal pixel values are radiometrically calibrated. -
VALID_IMG
Indicates that thermal pixels are calibrated enough to yield an image, but are not yet radiometrically calibrated. -
DESIRED
Indicates that an NUC is desired. -
RAD_APPROX
Indicated that approximate radiometric values are being given. -
BAD
Indicates that a corrupted/invalid NUC 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
-