Enum PictureData.PictureType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BMP
      Windows Bitmap (.bmp)
      DIB
      Device independent bitmap
      EMF
      Extended windows meta file
      EPS
      Encapsulated Postscript (.eps)
      GIF
      GIF image format
      JPEG
      JPEG format
      PICT
      Mac PICT format
      PNG
      PNG format
      TIFF
      Tag Image File (.tiff)
      WDP
      Microsoft Windows Media Photo image (.wdp)
      WMF
      Windows Meta File
      WPG
      WordPerfect graphics (.wpg)
    • Field Detail

      • nativeId

        public final int nativeId
      • ooxmlId

        public final int ooxmlId
      • contentType

        public final java.lang.String contentType
      • extension

        public final java.lang.String extension
    • Method Detail

      • values

        public static PictureData.PictureType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (PictureData.PictureType c : PictureData.PictureType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PictureData.PictureType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null