Package com.microstrategy.web.app.maps
Class MultiGeoData<E extends GeoData>
- java.lang.Object
-
- com.microstrategy.web.app.maps.MultiGeoData<E>
-
- Type Parameters:
E
- Subclass of GeoData, for exampleGeoPoint
,GeoPath
, andGeoPolygon
- All Implemented Interfaces:
GeoData
- Direct Known Subclasses:
GeoPath
,GeoPolygon
,MultiGeoPolygon
,MultiGeoPolyline
public abstract class MultiGeoData<E extends GeoData> extends java.lang.Object implements GeoData
The abstract class of the list of same type ofGeoData
object.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<E>
objectList
-
Constructor Summary
Constructors Constructor Description MultiGeoData()
Class constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(E geoData)
Add instances ofGeoData
object into the object list.java.util.List<E>
getGeoData()
Get the list ofGeoData
.int
size()
The size of the list ofGeoData
objects.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.microstrategy.web.app.maps.GeoData
getGeoType, serialize
-
-