public enum FileType extends Enum<FileType>
Enum Constant and 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 |
Modifier and Type | Method and Description |
---|---|
static FileType |
valueOf(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.
|
public static final FileType UNKNOWN
public static final FileType JPEG
public static final FileType TIFF
public static final FileType PSD
public static final FileType PNG
public static final FileType BMP
public static final FileType GIF
public static final FileType ICO
public static final FileType PCX
public static final FileType RIFF
public static final FileType ARW
public static final FileType CRW
public static final FileType CR2
public static final FileType NEF
public static final FileType ORF
public static final FileType RAF
public static final FileType RW2
public static FileType[] values()
for (FileType c : FileType.values()) System.out.println(c);
public static FileType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2002–2023 The Apache Software Foundation. All rights reserved.