Class SampleDataAccessFeatureIterator
- Object
-
- SampleDataAccessFeatureIterator
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,FeatureIterator<Feature>
public class SampleDataAccessFeatureIterator extends Object implements FeatureIterator<Feature>
Decorator for Iterator<Feature> to provide a FeatureIterator<Feature> that adds a close method that does nothing. This class exists only to satisfy theFeatureCollection
API. All iteration is performed using the iterator passed to the constructor.- Since:
- 2.6
- Author:
- Ben Caradoc-Davies (CSIRO Earth Science and Resource Engineering)
-
-
Constructor Summary
Constructors Constructor Description SampleDataAccessFeatureIterator(Iterator<Feature> iterator)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Nothing to close.boolean
hasNext()
Does another Feature exist in this Iteration.Feature
next()
Get the next Feature in this iteration.void
remove()
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
Description copied from interface:FeatureIterator
Does another Feature exist in this Iteration.Iterator defin: Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)
- Specified by:
hasNext
in interfaceFeatureIterator<Feature>
- Returns:
- true if more Features exist, false otherwise.
- See Also:
Iterator.hasNext()
-
next
public Feature next()
Description copied from interface:FeatureIterator
Get the next Feature in this iteration.- Specified by:
next
in interfaceFeatureIterator<Feature>
- Returns:
- The next Feature
- See Also:
Iterator.next()
-
remove
public void remove()
- See Also:
Iterator.remove()
-
close
public void close()
Nothing to close.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceFeatureIterator<Feature>
- See Also:
FeatureIterator.close()
-
-