public static enum VectorTile.VectorTileContentType extends Enum<VectorTile.VectorTileContentType>
The rendering method used for a specific tile. Geomajas supports different rendering strategies with different ways of rendering a tile. This enumeration defines the content types that these rendering methods produce.
| Enum Constant and Description |
|---|
STRING_CONTENT
Rendering method that contains an entire tile in a string format, such as SVG or VML.
|
URL_CONTENT
Rendering method that contains an URL to an image that contains the actual rendering of a tile.
|
| Modifier and Type | Method and Description |
|---|---|
static VectorTile.VectorTileContentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorTile.VectorTileContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorTile.VectorTileContentType STRING_CONTENT
public static final VectorTile.VectorTileContentType URL_CONTENT
public static VectorTile.VectorTileContentType[] values()
for (VectorTile.VectorTileContentType c : VectorTile.VectorTileContentType.values()) System.out.println(c);
public static VectorTile.VectorTileContentType 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 © 2015 Geosparc. All Rights Reserved.