Package ucar.nc2.ft
Interface TrajectoryProfileFeatureCollection
-
- All Superinterfaces:
DsgFeatureCollection,Iterable<TrajectoryProfileFeature>,PointFeatureCCC
- All Known Implementing Classes:
SectionCollectionImpl,StandardSectionCollectionImpl
public interface TrajectoryProfileFeatureCollection extends PointFeatureCCC, Iterable<TrajectoryProfileFeature>
A collection of SectionFeatures.- Since:
- Mar 19, 2008
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description PointFeatureCCIteratorgetNestedPointFeatureCollectionIterator()Deprecated.use foreachbooleanhasNext()Deprecated.use foreachTrajectoryProfileFeaturenext()Deprecated.use foreachvoidresetIteration()Deprecated.use foreach-
Methods inherited from interface ucar.nc2.ft.DsgFeatureCollection
getAltName, getAltUnits, getBoundingBox, getCalendarDateRange, getCollectionFeatureType, getCoordinateVariables, getExtraVariables, getName, getTimeName, getTimeUnit, size
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from interface ucar.nc2.ft.PointFeatureCCC
getCollectionIterator
-
-
-
-
Method Detail
-
hasNext
boolean hasNext() throws IOExceptionDeprecated.use foreachUse the internal iterator to check if there is another SectionFeature in the iteration.- Returns:
- true is there is another SectionFeature in the iteration.
- Throws:
IOException- on read error
-
next
TrajectoryProfileFeature next() throws IOException
Deprecated.use foreachUse the internal iterator to get the next SectionFeature in the iteration. You must call hasNext() before you call this.- Returns:
- the next SectionFeature in the iteration
- Throws:
IOException- on read error
-
resetIteration
void resetIteration() throws IOExceptionDeprecated.use foreachReset the internal iterator for another iteration over the SectionFeatures in this Collection.- Throws:
IOException- on read error
-
getNestedPointFeatureCollectionIterator
PointFeatureCCIterator getNestedPointFeatureCollectionIterator() throws IOException
Deprecated.use foreach- Throws:
IOException
-
-