Enum WebMapProvider
- java.lang.Object
-
- java.lang.Enum<WebMapProvider>
-
- org.meteoinfo.data.mapdata.webmap.WebMapProvider
-
public enum WebMapProvider extends java.lang.Enum<WebMapProvider>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebMapProvidervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebMapProvider[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OpenStreetMap
public static final WebMapProvider OpenStreetMap
-
OpenStreetMapQuestSattelite
public static final WebMapProvider OpenStreetMapQuestSattelite
-
BingMap
public static final WebMapProvider BingMap
-
BingSatelliteMap
public static final WebMapProvider BingSatelliteMap
-
BingHybridMap
public static final WebMapProvider BingHybridMap
-
GoogleMap
public static final WebMapProvider GoogleMap
-
GoogleSatelliteMap
public static final WebMapProvider GoogleSatelliteMap
-
GoogleTerrainMap
public static final WebMapProvider GoogleTerrainMap
-
GoogleHybridMap
public static final WebMapProvider GoogleHybridMap
-
GoogleHybridTerrainMap
public static final WebMapProvider GoogleHybridTerrainMap
-
AMap
public static final WebMapProvider AMap
-
ASatelliteMap
public static final WebMapProvider ASatelliteMap
-
AHybridMap
public static final WebMapProvider AHybridMap
-
TencentMap
public static final WebMapProvider TencentMap
-
YahooMap
public static final WebMapProvider YahooMap
-
YahooSatelliteMap
public static final WebMapProvider YahooSatelliteMap
-
YahooHybridMap
public static final WebMapProvider YahooHybridMap
-
-
Method Detail
-
values
public static WebMapProvider[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WebMapProvider c : WebMapProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebMapProvider valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-