public abstract class CellIterator extends Object implements Iterator<Cell>
| Modifier and Type | Field and Description | 
|---|---|
| protected Cell | nextCell | 
| protected Cell | thisCell | 
| Constructor and Description | 
|---|
| CellIterator() | 
| Modifier and Type | Method and Description | 
|---|---|
| Cell | next() | 
| Cell | nextFrom(Cell fromCell)Gets the next cell that is >=  fromCell, compared using non-leaf bytes. | 
| void | remove()This prevents sub-cells (those underneath the current cell) from being iterated to,
  if applicable, otherwise a NO-OP. | 
| Cell | thisCell()Returns the cell last returned from  next(). | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemaining, hasNextpublic Cell thisCell()
next(). It's cleared by hasNext().public Cell nextFrom(Cell fromCell)
fromCell, compared using non-leaf bytes. If it returns null then
 the iterator is exhausted.public void remove()
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.