public enum TiffFileStandardsEnum extends Enum<TiffFileStandardsEnum>
Specifies the TIFF file format standards.
Enum Constant and Description |
---|
Baseline
The Baseline TIFF 6.0 file standard.
|
Extended
The Extended TIFF 6.0 file standard.
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static TiffFileStandardsEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffFileStandardsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffFileStandardsEnum Baseline
The Baseline TIFF 6.0 file standard. This standard is formally known as TIFF 6.0, Part 1: Baseline TIFF.
public static final TiffFileStandardsEnum Extended
The Extended TIFF 6.0 file standard. This standard is formally known as Extended TIFF 6.0, Part 2: TIFF Extensions.
public static TiffFileStandardsEnum[] values()
for (TiffFileStandardsEnum c : TiffFileStandardsEnum.values()) System.out.println(c);
public static TiffFileStandardsEnum 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 nullpublic int getType()