Enum Class ImageFormat

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

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

    • JPG

      public static final ImageFormat JPG
      JPEG format. Supported on iOS and Android.
    • GIF

      public static final ImageFormat GIF
      GIF format. Supported on iOS and Android.
    • PNG

      public static final ImageFormat PNG
      PNG format. Supported on iOS and Android.
    • BMP

      public static final ImageFormat BMP
      BMP format. Supported on iOS and Android.
    • TIF

      public static final ImageFormat TIF
      TIF format. Supported on iOS.
  • Method Details

    • values

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