/** * Version 1.0 is to handle single variable 2DSquareCelled raster data. * Copyright (C) 2005 Andy Turner, CCG, University of Leeds, UK. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ package uk.ac.leeds.ccg.andyt.grids.core; import uk.ac.leeds.ccg.andyt.grids.utilities.AbstractIterator; /** * For iterating through the values in a Grid2DSquareCellIntChunkArray instance. * The values are not returned in any particular order. */ public class Grid2DSquareCellIntChunkArrayIterator extends AbstractIterator { private int[][]data; private int chunkRowIndex; private int chunkColIndex; private int chunkNrows; private int chunkNcols; /** Creates a new instance of Grid2DSquareIntIterator */ public Grid2DSquareCellIntChunkArrayIterator() {} /** * Creates a new instance of Grid2DSquareIntIterator * @param grid2DSquareCellIntChunkArray The Grid2DSquareCellIntChunkArray to * iterate over. */ public Grid2DSquareCellIntChunkArrayIterator( Grid2DSquareCellIntChunkArray grid2DSquareCellIntChunkArray ) { this.data = grid2DSquareCellIntChunkArray.getData(); this.chunkRowIndex = 0; this.chunkColIndex = 0; Grid2DSquareCellInt grid2DSquareCellInt = grid2DSquareCellIntChunkArray.getGrid2DSquareCellInt(); this.chunkNrows = grid2DSquareCellInt.getChunkNRows( grid2DSquareCellIntChunkArray._ChunkID, Grids_Environment.HandleOutOfMemoryErrorFalse ); this.chunkNcols = grid2DSquareCellInt.getChunkNCols( grid2DSquareCellIntChunkArray._ChunkID, Grids_Environment.HandleOutOfMemoryErrorFalse ); } /** * Returns true if the iteration has more elements. (In other * words, returns true if next would return an element * rather than throwing an exception.) * * @return true if the iterator has more elements. */ @Override public boolean hasNext() { if ( chunkColIndex + 1 == this.chunkNcols ) { if ( chunkRowIndex + 1 == this.chunkNrows ) { return false; } } return true; } /** * Returns the next element in the iteration. * * @return the next element in the iteration. * @exception NoSuchElementException iteration has no more elements. */ @Override public Object next() { if ( chunkColIndex + 1 == this.chunkNcols ) { if ( chunkRowIndex + 1 == this.chunkNrows ) { //throw NoSuchElementException; //return null; } else { this.chunkRowIndex ++; this.chunkColIndex = 0; } } else { this.chunkColIndex ++; } return new Integer( this.data[ this.chunkRowIndex ][ this.chunkColIndex ] ); } /** * * Removes from the underlying collection the last element returned by the * iterator (optional operation). This method can be called only once per * call to next. The behavior of an iterator is unspecified if * the underlying collection is modified while the iteration is in * progress in any way other than by calling this method. * * @exception UnsupportedOperationException if the remove * operation is not supported by this Iterator. * @exception IllegalStateException if the next method has not * yet been called, or the remove method has already * been called after the last call to the next * method. */ @Override public void remove() {} }