Enum FileType
- java.lang.Object
-
- java.lang.Enum<FileType>
-
- org.apache.pdfbox.util.filetypedetector.FileType
-
-
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.
-
-
-
Enum Constant Detail
-
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 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 namejava.lang.NullPointerException
- if the argument is null
-
-