public enum TiffByteOrderEnum extends Enum<TiffByteOrderEnum>
The byte order for the tiff image
Enum Constant and Description |
---|
BigEndian
The big endian byte order (Motorola).
|
LittleEndian
The little endian byte order (Intel).
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static TiffByteOrderEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffByteOrderEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffByteOrderEnum BigEndian
The big endian byte order (Motorola).
public static final TiffByteOrderEnum LittleEndian
The little endian byte order (Intel).
public static TiffByteOrderEnum[] values()
for (TiffByteOrderEnum c : TiffByteOrderEnum.values()) System.out.println(c);
public static TiffByteOrderEnum 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()