public static enum AbstractSimpleIterator.Order extends Enum<AbstractSimpleIterator.Order>
| Enum Constant and Description |
|---|
IMAGE_X_Y
The iterator will move by X (pixel) then Y (line) across
the whole image.
|
TILE_X_Y
The iterator will move by X (pixel) then Y (line) within
each tile of the image in turn.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractSimpleIterator.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractSimpleIterator.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractSimpleIterator.Order IMAGE_X_Y
public static final AbstractSimpleIterator.Order TILE_X_Y
public static AbstractSimpleIterator.Order[] values()
for (AbstractSimpleIterator.Order c : AbstractSimpleIterator.Order.values()) System.out.println(c);
public static AbstractSimpleIterator.Order 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 nullCopyright © 2009–2018. All rights reserved.