Package org.teamapps.ux.component.map
Enum MapType
- java.lang.Object
-
- java.lang.Enum<MapType>
-
- org.teamapps.ux.component.map.MapType
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.teamapps.dto.UiMapTypetoUiMapType()static MapTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MapType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNAL
public static final MapType INTERNAL
-
INTERNAL_DARK
public static final MapType INTERNAL_DARK
-
INTERNAL_DARK_HIGH_RES
public static final MapType INTERNAL_DARK_HIGH_RES
-
MAP_BOX_STREETS
public static final MapType MAP_BOX_STREETS
-
MAP_BOX_STREETS_BASIC
public static final MapType MAP_BOX_STREETS_BASIC
-
MAP_BOX_STREETS_SATELLITE
public static final MapType MAP_BOX_STREETS_SATELLITE
-
MAP_BOX_SATELLITE
public static final MapType MAP_BOX_SATELLITE
-
MAP_BOX_RUN_BIKE_HIKE
public static final MapType MAP_BOX_RUN_BIKE_HIKE
-
MAP_BOX_DARK
public static final MapType MAP_BOX_DARK
-
MAP_BOX_EMERALD
public static final MapType MAP_BOX_EMERALD
-
MAP_BOX_OUTDOORS
public static final MapType MAP_BOX_OUTDOORS
-
MAP_QUEST_OSM
public static final MapType MAP_QUEST_OSM
-
MAP_QUEST_SATELLITE
public static final MapType MAP_QUEST_SATELLITE
-
OSM_TOPO_MAP
public static final MapType OSM_TOPO_MAP
-
NASA_EARTH_AT_NIGHT
public static final MapType NASA_EARTH_AT_NIGHT
-
INFO_WEATHER_TEMPERATURE
public static final MapType INFO_WEATHER_TEMPERATURE
-
THUNDERFOREST_DARK
public static final MapType THUNDERFOREST_DARK
-
THUNDERFOREST_TRANSPORT
public static final MapType THUNDERFOREST_TRANSPORT
-
WIKIMEDIA
public static final MapType WIKIMEDIA
-
-
Method Detail
-
values
public static MapType[] 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 (MapType c : MapType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MapType 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
-
toUiMapType
public org.teamapps.dto.UiMapType toUiMapType()
-
-