Enum FileType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<FileType>

    public enum FileType
    extends java.lang.Enum<FileType>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ARW
      Sony camera raw.
      BMP  
      CR2
      Canon camera raw, version 2.
      CRW
      Canon camera raw, version 1.
      GIF  
      ICO  
      JPEG  
      NEF
      Nikon camera raw.
      ORF
      Olympus camera raw.
      PCX  
      PNG  
      PSD  
      RAF
      FujiFilm camera raw.
      RIFF  
      RW2
      Panasonic camera raw.
      TIFF  
      UNKNOWN  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private FileType()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static FileType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static FileType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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.
    • Constructor Detail

      • FileType

        private FileType()
    • 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​(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