| Enum Constant and Description |
|---|
LSB2MSB
Pixels with lower column values are stored in the lower-order bits of the byte.
|
MSB2LSB
Pixels with lower column values are stored in the higher-order bits of the byte.
|
| Modifier and Type | Method and Description |
|---|---|
static FillOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FillOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FillOrder MSB2LSB
public static final FillOrder LSB2MSB
public static FillOrder[] values()
for (FillOrder c : FillOrder.values()) System.out.println(c);
public static FillOrder valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null