Package ucar.nc2.ft.point
Class StructureDataIteratorIndexed
- java.lang.Object
-
- ucar.nc2.ft.point.StructureDataIteratorIndexed
-
- All Implemented Interfaces:
Closeable,AutoCloseable,StructureDataIterator
public class StructureDataIteratorIndexed extends Object implements StructureDataIterator
A StructureDataIterator which takes a list of record numbers (in a structure).- Since:
- Feb 11, 2009
-
-
Constructor Summary
Constructors Constructor Description StructureDataIteratorIndexed(Structure s, List<Integer> index)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCurrentRecno()booleanhasNext()See if theres more StructureData in the iteration.StructureDatanext()Get the next StructureData in the iteration.StructureDataIteratorreset()Start the iteration over again.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface ucar.ma2.StructureDataIterator
close, finish, setBufferSize
-
-
-
-
Method Detail
-
next
public StructureData next() throws IOException
Description copied from interface:StructureDataIteratorGet the next StructureData in the iteration.- Specified by:
nextin interfaceStructureDataIterator- Returns:
- next StructureData record.
- Throws:
IOException- on read error
-
hasNext
public boolean hasNext()
Description copied from interface:StructureDataIteratorSee if theres more StructureData in the iteration. You must always call this before calling next().- Specified by:
hasNextin interfaceStructureDataIterator- Returns:
- true if more records are available
-
reset
public StructureDataIterator reset()
Description copied from interface:StructureDataIteratorStart the iteration over again.- Specified by:
resetin interfaceStructureDataIterator- Returns:
- a new or reset iterator.
-
getCurrentRecno
public int getCurrentRecno()
- Specified by:
getCurrentRecnoin interfaceStructureDataIterator
-
-