public enum RasterFormat extends java.lang.Enum<RasterFormat>
Enum Constant and Description |
---|
RasterFormatGeoPackage |
RasterFormatKMZ |
RasterFormatMBTiles |
RasterFormatTiles |
RasterFormatTMS |
RasterFormatUndefined |
RasterFormatWW |
RasterFormatXYZ |
Modifier and Type | Method and Description |
---|---|
static RasterFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RasterFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RasterFormat RasterFormatUndefined
public static final RasterFormat RasterFormatTiles
public static final RasterFormat RasterFormatKMZ
public static final RasterFormat RasterFormatXYZ
public static final RasterFormat RasterFormatMBTiles
public static final RasterFormat RasterFormatWW
public static final RasterFormat RasterFormatTMS
public static final RasterFormat RasterFormatGeoPackage
public static RasterFormat[] values()
for (RasterFormat c : RasterFormat.values()) System.out.println(c);
public static RasterFormat 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