Enum Class BlendingMode

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

public enum BlendingMode extends Enum<BlendingMode>
The enumeration for all possible appearances for an isotherm.
  • Enum Constant Details

    • SOLID

      public static final BlendingMode SOLID
      Use a single, solid color for the isotherm.
      See Also:
    • TRANSPARENT

      public static final BlendingMode TRANSPARENT
      Use a transparent isotherm.
    • FOLLOW_Y

      public static final BlendingMode FOLLOW_Y
      Use the Y (in YCbCr) value from the palette underneath the isotherm.
    • LINKED_Y

      public static final BlendingMode LINKED_Y
      Link several isotherms by their Y value (in YCbCr).
  • Method Details

    • values

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