Package com.flir.thermalsdk.live.remote
Enum Class FusionController.DisplayMode
java.lang.Object
java.lang.Enum<FusionController.DisplayMode>
com.flir.thermalsdk.live.remote.FusionController.DisplayMode
- All Implemented Interfaces:
Serializable
,Comparable<FusionController.DisplayMode>
,Constable
- Enclosing class:
- FusionController
Definition of image's display mode. Depending on selected mode thermal or visual data is used to
render the image.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionImage displayed as blending between thermal and digital images.Image displayed as difference.Image displayed a digital.The camera video in fusion blending mode.The camera video in multi-spectral image mode.The camera sends video in basic mode.The camera video in picture in picture mode. -
Method Summary
Modifier and TypeMethodDescriptionstatic FusionController.DisplayMode
Returns the enum constant of this class with the specified name.static FusionController.DisplayMode[]
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
-
NONE
The camera sends video in basic mode. Use this for VISUAL-only mode. -
FUSION
The camera video in fusion blending mode. Use this for IR-only mode. -
PIP
The camera video in picture in picture mode. -
MSX
The camera video in multi-spectral image mode. -
DIGITAL
Image displayed a digital. -
DIFF
Image displayed as difference. -
BLENDING
Image displayed as blending between thermal and digital images.
-
-
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
-