Enum Class SignalStrength

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

public enum SignalStrength extends Enum<SignalStrength>
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 Constants
    Enum Constant
    Description
    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.
    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 Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    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

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • DISCOVERABLE

      public static final SignalStrength 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

      public static final SignalStrength EXCELLENT
      Good signal, allows to live stream and interact with the camera.
    • FAIR

      public static final SignalStrength FAIR
      Signal strength is fair enough for live streaming and interaction with the camera. Minor frame drops or lag/delay may occur.
    • WEAK

      public static final SignalStrength WEAK
      Weak signal may result in significant frame drops and delays in communication with the camera.
    • BAD

      public static final SignalStrength 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

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