Package ucar.nc2.ft

Interface PointFeatureCCIterator

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static interface  PointFeatureCCIterator.Filter
      A filter on nestedPointFeatureCollection
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void close()
      Make sure that the iterator is complete, and recover resources.
      boolean hasNext()
      true if another Feature object is available
      PointFeatureCC next()
      Returns the next NestedPointFeatureCollection object You must call hasNext() before calling next(), even if you know it will return true.
    • Method Detail

      • next

        PointFeatureCC next()
                     throws IOException
        Returns the next NestedPointFeatureCollection object You must call hasNext() before calling next(), even if you know it will return true.
        Specified by:
        next in interface IOIterator<PointFeatureCC>
        Returns:
        the next NestedPointFeatureCollection object
        Throws:
        IOException - on i/o error
      • close

        void close()
        Make sure that the iterator is complete, and recover resources. You must complete the iteration (until hasNext() returns false) or call close(). may be called more than once.
        Specified by:
        close in interface AutoCloseable
        Specified by:
        close in interface Closeable