Enum Class VideoFormat

java.lang.Object
java.lang.Enum<VideoFormat>
com.hp.lft.sdk.VideoFormat
All Implemented Interfaces:
Serializable, Comparable<VideoFormat>, java.lang.constant.Constable

public enum VideoFormat extends Enum<VideoFormat>
Formats which can be used in VideoData construction.
  • Enum Constant Details

    • MP4

      public static final VideoFormat MP4
      MP4 format. Supported on iOS and Android.
    • THREE_GP

      public static final VideoFormat THREE_GP
      3GP format. Supported on Android.
    • MKV

      public static final VideoFormat MKV
      MKV format. Supported on Android.
    • MOV

      public static final VideoFormat MOV
      MOV format. Supported on iOS.
    • M4V

      public static final VideoFormat M4V
      M4V format. Supported on iOS.
  • Method Details

    • values

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