public enum TileScalingType extends Enum<TileScalingType>
| Enum Constant and Description |
|---|
CLOSEST_IN_OUT
Search for tiles in closest zoom level order, zoom in levels before zoom
out
|
CLOSEST_OUT_IN
Search for tiles in closest zoom level order, zoom out levels before zoom
in
|
IN
Search for tiles by zooming in
|
IN_OUT
Search for tiles by zooming in first, and then zooming out
|
OUT
Search for tiles by zooming out
|
OUT_IN
Search for tiles by zooming out first, and then zooming in
|
| Modifier and Type | Method and Description |
|---|---|
static TileScalingType |
fromName(String name)
Get the Tile Scaling Type from the name
|
String |
getName()
Get the name
|
static TileScalingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TileScalingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TileScalingType IN
public static final TileScalingType OUT
public static final TileScalingType IN_OUT
public static final TileScalingType OUT_IN
public static final TileScalingType CLOSEST_IN_OUT
public static final TileScalingType CLOSEST_OUT_IN
public static TileScalingType[] values()
for (TileScalingType c : TileScalingType.values()) System.out.println(c);
public static TileScalingType 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 nullpublic String getName()
public static TileScalingType fromName(String name)
name - nameCopyright © 2018 National Geospatial-Intelligence Agency. All rights reserved.