|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
ObjectEnum<TileLayout>
TileLayout
public enum TileLayout
The layout of tiles in a TileManager. This is an enumeration that specify how
MosaicBuilder should lay out the new tiles relative to each other. For example
if the pixels in an image overview cover a geographic area 2 time larger
(in width and height) than the pixels in an original image, then we have
a choice:
CONSTANT_GEOGRAPHIC_AREA).CONSTANT_TILE_SIZE).
MosaicBuilder
| coverage/geotk-coverageio (download) | View source code for this class |
| Enum Constant Summary | |
|---|---|
CONSTANT_GEOGRAPHIC_AREA
All tiles cover the same geographic area. |
|
CONSTANT_TILE_SIZE
All tiles have the same width and height in pixels. |
|
GENERIC
A generic layout with heteregenous tile size or geographic area. |
|
| Method Summary | |
|---|---|
static TileLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TileLayout[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TileLayout GENERIC
public static final TileLayout CONSTANT_TILE_SIZE
public static final TileLayout CONSTANT_GEOGRAPHIC_AREA
| Method Detail |
|---|
public static TileLayout[] values()
for (TileLayout c : TileLayout.values()) System.out.println(c);
public static TileLayout valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||