public enum TiffDataTypesEnum extends Enum<TiffDataTypesEnum>
The tiff data type enum.
Enum Constant and Description |
---|
Ascii
8-bit bytes with last byte
null . |
Byte
8-bit unsigned integer.
|
Double
64-bit IEEE floating point.
|
Float
32-bit IEEE floating point.
|
Ifd
Pointer to Exif image file directory (IFD).
|
Long
32-bit unsigned integer.
|
Rational
64-bit unsigned fraction.
|
Sbyte
8-bit signed integer.
|
Short
16-bit unsigned integer.
|
Slong
32-bit signed integer.
|
Srational
64-bit signed fraction.
|
Sshort
16-bit signed integer.
|
Undefined
8-bit untyped data.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Gets the value of enum.
|
static TiffDataTypesEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffDataTypesEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffDataTypesEnum Byte
8-bit unsigned integer.
public static final TiffDataTypesEnum Ascii
8-bit bytes with last byte null
.
public static final TiffDataTypesEnum Short
16-bit unsigned integer.
public static final TiffDataTypesEnum Long
32-bit unsigned integer.
public static final TiffDataTypesEnum Rational
64-bit unsigned fraction.
public static final TiffDataTypesEnum Sbyte
8-bit signed integer.
public static final TiffDataTypesEnum Undefined
8-bit untyped data.
public static final TiffDataTypesEnum Sshort
16-bit signed integer.
public static final TiffDataTypesEnum Slong
32-bit signed integer.
public static final TiffDataTypesEnum Srational
64-bit signed fraction.
public static final TiffDataTypesEnum Float
32-bit IEEE floating point.
public static final TiffDataTypesEnum Double
64-bit IEEE floating point.
public static final TiffDataTypesEnum Ifd
Pointer to Exif image file directory (IFD).
public static TiffDataTypesEnum[] values()
for (TiffDataTypesEnum c : TiffDataTypesEnum.values()) System.out.println(c);
public static TiffDataTypesEnum 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()