Package com.microstrategy.web.app.maps
Class ComboGeoData
- java.lang.Object
-
- com.microstrategy.web.app.maps.ComboGeoData
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<GeoData>
objectList
-
Constructor Summary
Constructors Constructor Description ComboGeoData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addGeoData(GeoData obj)
java.util.List<GeoData>
getAll()
GeoData
getGeoDataAt(int index)
int
getGeoType()
Returns the map object type.GeoDataOutput
serialize(GeoDataSerializer serializer)
UseGeoDataSerializer
visitor to parse and serialize the data content.
-
-
-
Field Detail
-
objectList
protected java.util.List<GeoData> objectList
-
-
Method Detail
-
addGeoData
public void addGeoData(GeoData obj)
-
getAll
public java.util.List<GeoData> getAll()
-
getGeoDataAt
public GeoData getGeoDataAt(int index)
-
serialize
public GeoDataOutput serialize(GeoDataSerializer serializer)
Description copied from interface:GeoData
UseGeoDataSerializer
visitor to parse and serialize the data content.- Specified by:
serialize
in interfaceGeoData
- Parameters:
serializer
- aGeoDataSerializer
object.- Returns:
- a formatted string represents the geo data content.
-
getGeoType
public int getGeoType()
Description copied from interface:GeoData
Returns the map object type. The value of the object type is fromEnumMapFeatures
map object types.- Specified by:
getGeoType
in interfaceGeoData
- Returns:
- a
EnumMapFeatures
map object type.
-
-