Class MultiGeoData<E extends GeoData>

    • 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 of GeoData object into the object list.
      java.util.List<E> getGeoData()
      Get the list of GeoData.
      int size()
      The size of the list of GeoData objects.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • objectList

        protected java.util.List<E extends GeoData> objectList
    • Constructor Detail

      • MultiGeoData

        public MultiGeoData()
        Class constructor.
    • Method Detail

      • add

        public void add​(E geoData)
        Add instances of GeoData object into the object list.
        Parameters:
        geoData - The instance of GeoData object.
      • getGeoData

        public java.util.List<E> getGeoData()
        Get the list of GeoData.
        Returns:
        the list of GeoData objects.
      • size

        public int size()
        The size of the list of GeoData objects.
        Returns:
        The size of the list of GeoData objects.