Package com.flir.thermalsdk.live
Enum Class SignalStrength
- All Implemented Interfaces:
Serializable
,Comparable<SignalStrength>
,Constable
Defines a level/strength of signal.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBad signal will eventually result in a connection break or timeout and it will most likely be impossible to get a live stream or interact with the camera.State in which it is possible to discover the camera.Good signal, allows to live stream and interact with the camera.Signal strength is fair enough for live streaming and interaction with the camera.Weak signal may result in significant frame drops and delays in communication with the camera. -
Method Summary
Modifier and TypeMethodDescriptionstatic SignalStrength
Returns the enum constant of this class with the specified name.static SignalStrength[]
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
-
DISCOVERABLE
State in which it is possible to discover the camera. Note that after discovery phrase camera can be moved further away from the phone and still it will be possible to connect and stream. -
EXCELLENT
Good signal, allows to live stream and interact with the camera. -
FAIR
Signal strength is fair enough for live streaming and interaction with the camera. Minor frame drops or lag/delay may occur. -
WEAK
Weak signal may result in significant frame drops and delays in communication with the camera. -
BAD
Bad signal will eventually result in a connection break or timeout and it will most likely be impossible to get a live stream or interact with the camera.
-
-
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
-