Enum Class FileType

java.lang.Object
java.lang.Enum<FileType>
org.apache.pdfbox.util.filetypedetector.FileType
All Implemented Interfaces:
Serializable, Comparable<FileType>, Constable

public enum FileType extends Enum<FileType>
Author:
Drew Noakes code taken from https://github.com/drewnoakes/metadata-extractor 2016-01-04 latest commit number 73f1a48 Enumeration of supported image file formats.
  • Enum Constant Details

    • UNKNOWN

      public static final FileType UNKNOWN
    • JPEG

      public static final FileType JPEG
    • TIFF

      public static final FileType TIFF
    • PSD

      public static final FileType PSD
    • PNG

      public static final FileType PNG
    • BMP

      public static final FileType BMP
    • GIF

      public static final FileType GIF
    • ICO

      public static final FileType ICO
    • PCX

      public static final FileType PCX
    • RIFF

      public static final FileType RIFF
    • ARW

      public static final FileType ARW
      Sony camera raw.
    • CRW

      public static final FileType CRW
      Canon camera raw, version 1.
    • CR2

      public static final FileType CR2
      Canon camera raw, version 2.
    • NEF

      public static final FileType NEF
      Nikon camera raw.
    • ORF

      public static final FileType ORF
      Olympus camera raw.
    • RAF

      public static final FileType RAF
      FujiFilm camera raw.
    • RW2

      public static final FileType RW2
      Panasonic camera raw.
  • Method Details

    • values

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