public static enum MapView.TileSize extends java.lang.Enum<MapView.TileSize>
Enum Constant and Description |
---|
HIGH_DPI_512_TILE
High resolution tiles, 512x512 px
|
LOW_DPI_256_TILE
Low resolution tiles, 256x256 px
|
Modifier and Type | Method and Description |
---|---|
static MapView.TileSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapView.TileSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapView.TileSize LOW_DPI_256_TILE
public static final MapView.TileSize HIGH_DPI_512_TILE
public static MapView.TileSize[] values()
for (MapView.TileSize c : MapView.TileSize.values()) System.out.println(c);
public static MapView.TileSize 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