public enum MapTilesType extends java.lang.Enum<MapTilesType>
Enum Constant and Description |
---|
NONE
No tiles.
|
RASTER
Raster tiles.
|
VECTOR
Vector tiles.
|
Modifier and Type | Method and Description |
---|---|
static MapTilesType |
fromString(java.lang.String value)
Get
MapTilesType from String. |
static MapTilesType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapTilesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapTilesType NONE
public static final MapTilesType VECTOR
public static final MapTilesType RASTER
public static MapTilesType[] values()
for (MapTilesType c : MapTilesType.values()) System.out.println(c);
public static MapTilesType 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@NonNull public static MapTilesType fromString(java.lang.String value)
MapTilesType
from String. Exception will
be thrown when string does not match any enum value.