Package org.apache.poi.xssf.streaming
Class SXSSFRow.CellIterator
- java.lang.Object
-
- org.apache.poi.xssf.streaming.SXSSFRow.CellIterator
-
- Enclosing class:
- SXSSFRow
public class SXSSFRow.CellIterator extends Object implements Iterator<Cell>
returns all cells including empty cells (nullvalues are returned for empty cells). This method is not synchronized. This iterator should not be used after cells are added, moved, or removed, though a ConcurrentModificationException is NOT thrown.
-
-
Constructor Summary
Constructors Constructor Description CellIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Cellnext()voidremove()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
next
public Cell next() throws NoSuchElementException
- Specified by:
nextin interfaceIterator<Cell>- Throws:
NoSuchElementException
-
-