bug 61730: add javadoc

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1814451 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2017-11-07 01:54:25 +00:00
parent cbb82add8f
commit 9d8df29cf1
1 changed files with 4 additions and 0 deletions

View File

@ -302,6 +302,10 @@ public abstract class CellRangeAddressBase implements Iterable<CellAddress> {
return Collections.unmodifiableList(addresses); return Collections.unmodifiableList(addresses);
} }
/**
* Returns an iterator over the CellAddresses in this cell range in row-major order.
* @since POI 4.0.0
*/
@Override @Override
public Iterator<CellAddress> iterator() { public Iterator<CellAddress> iterator() {
return new RowMajorCellAddressIterator(this); return new RowMajorCellAddressIterator(this);