public abstract class CellIterator
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected ARRSCell |
cell |
protected boolean |
valid |
Constructor and Description |
---|
CellIterator()
Constructor without argument
|
Modifier and Type | Method and Description |
---|---|
Cell |
getCell()
Get a cell
|
abstract void |
init()
Initialize this CellIterator object
|
abstract boolean |
next()
Moving the CellIterator to the next position.
|
java.lang.String |
toString()
Return a String representing the object.
|
abstract java.lang.String |
toString(java.lang.String indent)
Return description of this ARRSCell
|
boolean |
valid()
Return true if the current position is valid
|
protected ARRSCell cell
protected boolean valid
public boolean valid()
public abstract void init()
public abstract boolean next()
public Cell getCell()
public java.lang.String toString()
toString
in class java.lang.Object
public abstract java.lang.String toString(java.lang.String indent)