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 fb321255e8
commit 841cc75ee4

View File

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