Enum Class VoiceAnnotationFormat

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

public enum VoiceAnnotationFormat extends Enum<VoiceAnnotationFormat>
Defines VoiceAnnotation's sound format.
  • Enum Constant Details

    • UNKNOWN

      public static final VoiceAnnotationFormat UNKNOWN
      Undefined format, however it should be possible to play the voice annotation anyway.
    • MP3

      public static final VoiceAnnotationFormat MP3
      Sound is stored with MP3 encoding applied.
    • WAV

      public static final VoiceAnnotationFormat WAV
      The sound is not encoded.
    • INVALID

      public static final VoiceAnnotationFormat INVALID
      Invalid format - probably voice annotation is unreadable.
  • Method Details

    • values

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