|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TileLayout>
org.geotools.image.io.mosaic.TileLayout
public enum TileLayout
The layout of tiles in a TileManager
. Used by TileBuilder
for creating tiles
in some commonly used layout.
TileBuilder
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(java.lang.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 java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.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(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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |