public enum TiffExpectedFormatEnum extends Enum<TiffExpectedFormatEnum>
The expected tiff file format.
Enum Constant and Description |
---|
Default
The default tiff format is no compression with B/W 1 bit per pixel only format.
|
TiffCcitRle
The tiff CCITT RLE encoding.
|
TiffCcittFax3
The tiff CCITT FAX3 encoding.
|
TiffCcittFax4
The tiff CCITT FAX4 encoding.
|
TiffDeflateBw
The tiff having deflate compression and B/W 1 bit per pixel only format.
|
TiffDeflateRgb
The tiff having deflate compression and RGB color format.
|
TiffDeflateRgba
The tiff having deflate compression and RGBA color format.
|
TiffJpegRgb
The tiff having Jpeg compression and RGB color format.
|
TiffJpegYCbCr
The tiff having Jpeg compression and YCBCR color format.
|
TiffLzwBw
The tiff having LZW compression and B/W 1 bit per pixel only format.
|
TiffLzwCmyk
The tiff LZW cmyk
|
TiffLzwRgb
The tiff having LZW compression and RGB color format.
|
TiffLzwRgba
The tiff having LZW compression and RGBA with transparency color format.
|
TiffNoCompressionBw
The uncompressed tiff and B/W 1 bit per pixel only format.
|
TiffNoCompressionRgb
The uncompressed tiff and RGB color format.
|
TiffNoCompressionRgba
The uncompressed tiff and RGBA with transparency color format.
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static TiffExpectedFormatEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffExpectedFormatEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffExpectedFormatEnum Default
The default tiff format is no compression with B/W 1 bit per pixel only format. You can also use this setting to get an empty options and initialize with your tags or other settings.
public static final TiffExpectedFormatEnum TiffLzwBw
The tiff having LZW compression and B/W 1 bit per pixel only format.
public static final TiffExpectedFormatEnum TiffLzwRgb
The tiff having LZW compression and RGB color format.
public static final TiffExpectedFormatEnum TiffLzwRgba
The tiff having LZW compression and RGBA with transparency color format.
public static final TiffExpectedFormatEnum TiffLzwCmyk
The tiff LZW cmyk
public static final TiffExpectedFormatEnum TiffCcittFax3
The tiff CCITT FAX3 encoding. B/W 1 bit per pixel only supported for that scheme.
public static final TiffExpectedFormatEnum TiffCcittFax4
The tiff CCITT FAX4 encoding. B/W 1 bit per pixel only supported for that scheme.
public static final TiffExpectedFormatEnum TiffDeflateBw
The tiff having deflate compression and B/W 1 bit per pixel only format.
public static final TiffExpectedFormatEnum TiffDeflateRgb
The tiff having deflate compression and RGB color format.
public static final TiffExpectedFormatEnum TiffDeflateRgba
The tiff having deflate compression and RGBA color format.
public static final TiffExpectedFormatEnum TiffCcitRle
The tiff CCITT RLE encoding. B/W 1 bit per pixel only supported for that scheme.
public static final TiffExpectedFormatEnum TiffJpegRgb
The tiff having Jpeg compression and RGB color format.
public static final TiffExpectedFormatEnum TiffJpegYCbCr
The tiff having Jpeg compression and YCBCR color format.
public static final TiffExpectedFormatEnum TiffNoCompressionBw
The uncompressed tiff and B/W 1 bit per pixel only format.
public static final TiffExpectedFormatEnum TiffNoCompressionRgb
The uncompressed tiff and RGB color format.
public static final TiffExpectedFormatEnum TiffNoCompressionRgba
The uncompressed tiff and RGBA with transparency color format.
public static TiffExpectedFormatEnum[] values()
for (TiffExpectedFormatEnum c : TiffExpectedFormatEnum.values()) System.out.println(c);
public static TiffExpectedFormatEnum 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()