public enum TiffFillOrdersEnum extends Enum<TiffFillOrdersEnum>
Data order within a byte.<br></br>
Possible values for FILLORDER tag.
Enum Constant and Description |
---|
Lsb2Msb
Least significant - most.
|
Msb2Lsb
Most significant - least.
|
Modifier and Type | Method and Description |
---|---|
static TiffFillOrdersEnum |
getByValue(int value) |
int |
getValue()
Gets the value of enum.
|
static TiffFillOrdersEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffFillOrdersEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffFillOrdersEnum Msb2Lsb
Most significant - least.
public static final TiffFillOrdersEnum Lsb2Msb
Least significant - most.
public static TiffFillOrdersEnum[] values()
for (TiffFillOrdersEnum c : TiffFillOrdersEnum.values()) System.out.println(c);
public static TiffFillOrdersEnum 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 TiffFillOrdersEnum getByValue(int value)