Enum Class ThermalValueState

java.lang.Object
java.lang.Enum<ThermalValueState>
com.flir.thermalsdk.image.ThermalValueState
All Implemented Interfaces:
Serializable, Comparable<ThermalValueState>, Constable

public enum ThermalValueState extends Enum<ThermalValueState>
Specifies the Thermal value State.
  • Enum Constant Details

    • INVALID

      public static final ThermalValueState INVALID
      Value is invalid. Usually happens when calculation mask for the particular measure type (i.e. min, max, average) is not enabled.
    • OK

      public static final ThermalValueState OK
      Value is OK.
    • OVERFLOW

      public static final ThermalValueState OVERFLOW
      Value is too high.
    • UNDERFLOW

      public static final ThermalValueState UNDERFLOW
      Value is too low.
    • OUTSIDE

      public static final ThermalValueState OUTSIDE
      Value is outside image.
    • WARNING

      public static final ThermalValueState WARNING
      Value is unreliable.
    • UNSTABLE

      public static final ThermalValueState UNSTABLE
      Value is not yet calculated, unstable image after restart/case change.
    • DELTA

      public static final ThermalValueState DELTA
      Value is OK + compensated with a reference temperature delta.
  • Method Details

    • values

      public static ThermalValueState[] 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

      public static ThermalValueState valueOf(String name)
      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 name
      NullPointerException - if the argument is null