Class PointIteratorFiltered

    • Method Detail

      • hasNext

        public boolean hasNext()
        Returns true if the iteration has more elements. (In other words, returns true if next() would return an element rather than throwing an exception.)

        This method is idempotent, meaning that when it is called repeatedly without an intervening next(), calls after the first will have no effect.

        Returns:
        true if the iteration has more elements
      • close

        public void close()
        Description copied from interface: PointFeatureIterator
        Make sure that the iterator is complete, and recover resources. You must complete the iteration (until hasNext() returns false) or call close(). It may be called more than once (idempotent).