Enum Class RotationAngle

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

public enum RotationAngle extends Enum<RotationAngle>
Defines a clock-wise rotation angle which can be applied for a ThermalImage. Note: The angle is absolute (not relative image current rotation).
  • Enum Constant Details

    • ROTATION_ANGLE_0_DEGREES

      public static final RotationAngle ROTATION_ANGLE_0_DEGREES
      Image should be rotated to 0 degrees.
    • ROTATION_ANGLE_90_DEGREES

      public static final RotationAngle ROTATION_ANGLE_90_DEGREES
      Image should be rotated to 90 degrees.
    • ROTATION_ANGLE_180_DEGREES

      public static final RotationAngle ROTATION_ANGLE_180_DEGREES
      Image should be rotated to 180 degrees.
    • ROTATION_ANGLE_270_DEGREES

      public static final RotationAngle ROTATION_ANGLE_270_DEGREES
      Image should be rotated to 270 degrees.
    • ROTATION_ANGLE_UNSUPPORTED

      public static final RotationAngle ROTATION_ANGLE_UNSUPPORTED
      Image reported a unsupported angle.
  • Method Details

    • values

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