public enum LineOrder extends Enum<LineOrder>
Enum Constant and Description |
---|
DECREASING_Y
First scan line has highest y coordinate.
|
INCREASING_Y
First scan line has lowest y coordinate.
|
RANDOM_Y
Only for tiled files; tiles are written in random order.
|
Modifier and Type | Method and Description |
---|---|
static LineOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineOrder INCREASING_Y
public static final LineOrder DECREASING_Y
public static final LineOrder RANDOM_Y
public static LineOrder[] values()
for (LineOrder c : LineOrder.values()) System.out.println(c);
public static LineOrder 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 null