public enum TiffSampleFormatsEnum extends Enum<TiffSampleFormatsEnum>
Sample format enums
Enum Constant and Description |
---|
ComplexIeeeFp
Complex ieee floating
|
ComplexInt
Complex signed int
|
IeeeFp
IEEE floating point data
|
Int
Signed integer data
|
Uint
Unsigned integer data
|
Void
Untyped data
|
Modifier and Type | Method and Description |
---|---|
static TiffSampleFormatsEnum |
getByValue(int value) |
int |
getValue()
Gets the value of enum.
|
static TiffSampleFormatsEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffSampleFormatsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffSampleFormatsEnum Uint
Unsigned integer data
public static final TiffSampleFormatsEnum Int
Signed integer data
public static final TiffSampleFormatsEnum IeeeFp
IEEE floating point data
public static final TiffSampleFormatsEnum Void
Untyped data
public static final TiffSampleFormatsEnum ComplexInt
Complex signed int
public static final TiffSampleFormatsEnum ComplexIeeeFp
Complex ieee floating
public static TiffSampleFormatsEnum[] values()
for (TiffSampleFormatsEnum c : TiffSampleFormatsEnum.values()) System.out.println(c);
public static TiffSampleFormatsEnum 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 TiffSampleFormatsEnum getByValue(int value)