Class FeatureIndexGeoPackageResults
- java.lang.Object
-
- mil.nga.geopackage.features.index.FeatureIndexGeoPackageResults
-
- All Implemented Interfaces:
Iterable<FeatureRow>
,FeatureIndexResults
public class FeatureIndexGeoPackageResults extends Object implements FeatureIndexResults
Iterable Feature Index Results to iterate on feature rows retrieved from GeoPackage index extension results- Since:
- 3.1.0
- Author:
- osbornb
-
-
Constructor Summary
Constructors Constructor Description FeatureIndexGeoPackageResults(FeatureTableIndex featureTableIndex, long count, CloseableIterator<GeometryIndex> geometryIndices)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Close the resultslong
count()
Get the count of resultsIterable<Long>
ids()
Iterable for iterating over feature ids in place of feature rowsIterator<FeatureRow>
iterator()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
FeatureIndexGeoPackageResults
public FeatureIndexGeoPackageResults(FeatureTableIndex featureTableIndex, long count, CloseableIterator<GeometryIndex> geometryIndices)
Constructor- Parameters:
featureTableIndex
- feature table indexcount
- countgeometryIndices
- geometry indices
-
-
Method Detail
-
iterator
public Iterator<FeatureRow> iterator()
- Specified by:
iterator
in interfaceIterable<FeatureRow>
-
count
public long count()
Get the count of results- Specified by:
count
in interfaceFeatureIndexResults
- Returns:
- count
-
close
public void close()
Close the results- Specified by:
close
in interfaceFeatureIndexResults
-
ids
public Iterable<Long> ids()
Iterable for iterating over feature ids in place of feature rows- Specified by:
ids
in interfaceFeatureIndexResults
- Returns:
- iterable ids
-
-