Enum ImageFormat

java.lang.Object
java.lang.Enum<ImageFormat>
com.idrsolutions.image.ImageFormat
All Implemented Interfaces:
Serializable, Comparable<ImageFormat>, java.lang.constant.Constable

public enum ImageFormat extends Enum<ImageFormat>
  • Enum Constant Details

    • AVIF_IMAGE

      public static final ImageFormat AVIF_IMAGE
    • BMP_IMAGE

      public static final ImageFormat BMP_IMAGE
    • DICOM_IMAGE

      public static final ImageFormat DICOM_IMAGE
    • EMF_IMAGE

      public static final ImageFormat EMF_IMAGE
    • GIF_IMAGE

      public static final ImageFormat GIF_IMAGE
    • HEIC_MULTI_FRAME_IMAGE

      public static final ImageFormat HEIC_MULTI_FRAME_IMAGE
    • HEIC_IMAGE

      public static final ImageFormat HEIC_IMAGE
    • JPEG_IMAGE

      public static final ImageFormat JPEG_IMAGE
    • JPEG2000_IMAGE

      public static final ImageFormat JPEG2000_IMAGE
    • PNG_IMAGE

      public static final ImageFormat PNG_IMAGE
    • PSD_IMAGE

      public static final ImageFormat PSD_IMAGE
    • SGI_IMAGE

      public static final ImageFormat SGI_IMAGE
    • TIFF_IMAGE

      public static final ImageFormat TIFF_IMAGE
    • WEBP_IMAGE

      public static final ImageFormat WEBP_IMAGE
    • WMF_IMAGE

      public static final ImageFormat WMF_IMAGE
    • ANIMATED_GIF

      public static final ImageFormat ANIMATED_GIF
    • UNSUPPORTED_IMAGE

      public static final ImageFormat UNSUPPORTED_IMAGE
  • Method Details

    • values

      public static ImageFormat[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ImageFormat valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ImageFormat>