public enum TiffPredictorEnum extends Enum<TiffPredictorEnum>
Prediction scheme for LZW
Enum Constant and Description |
---|
Horizontal
Horizontal differencing.
|
None
No prediction scheme used.
|
Modifier and Type | Method and Description |
---|---|
static TiffPredictorEnum |
getByValue(int value) |
int |
getValue()
Gets the value of enum.
|
static TiffPredictorEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffPredictorEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffPredictorEnum None
No prediction scheme used.
public static final TiffPredictorEnum Horizontal
Horizontal differencing.
public static TiffPredictorEnum[] values()
for (TiffPredictorEnum c : TiffPredictorEnum.values()) System.out.println(c);
public static TiffPredictorEnum 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 getValue()
public static TiffPredictorEnum getByValue(int value)