Enum FileType

    • Enum Constant Detail

      • UNKNOWN

        public static final FileType UNKNOWN
      • JPEG

        public static final FileType JPEG
      • TIFF

        public static final FileType TIFF
      • 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 Detail

      • values

        public static FileType[] 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 (FileType c : FileType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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