public enum TiffCompressionType extends Enum<TiffCompressionType> implements FriendlyNamed
| Enum Constant and Description |
|---|
CCITT_GROUP_3_1D |
CCITT_GROUP_3_2D |
CCITT_GROUP_4 |
DEFLATE |
JPEG_TTN2 |
LZW |
NONE |
PACKBITS |
| Modifier and Type | Method and Description |
|---|---|
String |
getFriendlyName() |
static TiffCompressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffCompressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffCompressionType NONE
public static final TiffCompressionType CCITT_GROUP_3_1D
public static final TiffCompressionType CCITT_GROUP_3_2D
public static final TiffCompressionType CCITT_GROUP_4
public static final TiffCompressionType LZW
public static final TiffCompressionType JPEG_TTN2
public static final TiffCompressionType PACKBITS
public static final TiffCompressionType DEFLATE
public static TiffCompressionType[] values()
for (TiffCompressionType c : TiffCompressionType.values()) System.out.println(c);
public static TiffCompressionType 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 String getFriendlyName()
getFriendlyName in interface FriendlyNamedCopyright © 2015. All Rights Reserved.