Package com.flir.thermalsdk.image
Enum Class RotationAngle
- All Implemented Interfaces:
Serializable
,Comparable<RotationAngle>
,Constable
Defines a clock-wise rotation angle which can be applied for a
ThermalImage
.
Note: The angle is absolute (not relative image current rotation).-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionImage should be rotated to 0 degrees.Image should be rotated to 180 degrees.Image should be rotated to 270 degrees.Image should be rotated to 90 degrees.Image reported a unsupported angle. -
Method Summary
Modifier and TypeMethodDescriptionstatic RotationAngle
Returns the enum constant of this class with the specified name.static RotationAngle[]
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
-
ROTATION_ANGLE_0_DEGREES
Image should be rotated to 0 degrees. -
ROTATION_ANGLE_90_DEGREES
Image should be rotated to 90 degrees. -
ROTATION_ANGLE_180_DEGREES
Image should be rotated to 180 degrees. -
ROTATION_ANGLE_270_DEGREES
Image should be rotated to 270 degrees. -
ROTATION_ANGLE_UNSUPPORTED
Image reported a unsupported angle.
-
-
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
-