Uses of Class
uk.ac.leeds.ccg.andyt.grids.core.Grid2DSquareCellChunkAbstract

Packages that use Grid2DSquareCellChunkAbstract
uk.ac.leeds.ccg.andyt.grids.core   
 

Uses of Grid2DSquareCellChunkAbstract in uk.ac.leeds.ccg.andyt.grids.core
 

Subclasses of Grid2DSquareCellChunkAbstract in uk.ac.leeds.ccg.andyt.grids.core
 class Grid2DSquareCellDoubleChunk64CellMap
          Grid2DSquareCellDoubleChunkAbstract extension that stores cell values in a TDoubleLongHashMap.
 class Grid2DSquareCellDoubleChunkAbstract
          Provides general methods and controls what methods extended classes must implement acting as an interface.
 class Grid2DSquareCellDoubleChunkArray
          Grid2DSquareCellDoubleChunkAbstract extension that stores cell values in a double[][].
 class Grid2DSquareCellDoubleChunkJAI
          Grid2DSquareCellDoubleChunkAbstract extension that stores cell values in a javax.media.jai.TiledImage.
 class Grid2DSquareCellDoubleChunkMap
          Grid2DSquareCellDoubleChunkAbstract extension that stores cell values in a TDoubleObjectHashMap.
 class Grid2DSquareCellDoubleChunkRAF
          Grid2DSquareCellDoubleChunkAbstract extension that stores cell values in a RandomAccessFile.
 class Grid2DSquareCellIntChunk64CellMap
          Grid2DSquareCellIntChunkAbstract extension that stores cell values in a TIntLongHashMap.
 class Grid2DSquareCellIntChunkAbstract
          Provides general methods and controls what methods extended classes must implement acting as an interface.
 class Grid2DSquareCellIntChunkArray
          Grid2DSquareCellIntChunkAbstract extension that stores cell values in a int[][].
 class Grid2DSquareCellIntChunkJAI
          Grid2DSquareCellIntChunkAbstract extension that stores cell values in a javax.media.jai.TiledImage.
 class Grid2DSquareCellIntChunkMap
          Grid2DSquareCellIntChunkAbstract extension that stores cell values in a TIntObjectHashMap.
 class Grid2DSquareCellIntChunkRAF
          Grid2DSquareCellIntChunkAbstract extension that stores cell values in a RandomAccessFile.
 

Methods in uk.ac.leeds.ccg.andyt.grids.core that return Grid2DSquareCellChunkAbstract
protected  Grid2DSquareCellChunkAbstract Grid2DSquareCellAbstract.getGrid2DSquareCellChunk(Grid2DSquareCellAbstract.ChunkID chunkID)
          Returns the Grid2DSquareCellChunkAbstract with ChunkID equal to chunkID.
protected  Grid2DSquareCellChunkAbstract Grid2DSquareCellAbstract.getGrid2DSquareCellChunk(Grid2DSquareCellAbstract.ChunkID chunkID, boolean handleOutOfMemoryError)
          Returns the Grid2DSquareCellChunkAbstract with ChunkID equal to chunkID.
protected  Grid2DSquareCellChunkAbstract Grid2DSquareCellAbstract.getGrid2DSquareCellChunk(int chunkRowIndex, int chunkColIndex)
          Returns the Grid2DSquareCellChunkAbstract with ChunkID.chunkRowIndex equal to chunkRowIndex and ChunkID.chunkColIndex equal to chunkColIndex.
protected  Grid2DSquareCellChunkAbstract Grid2DSquareCellAbstract.getGrid2DSquareCellChunk(int chunkRowIndex, int chunkColIndex, boolean handleOutOfMemoryError)
          Returns the Grid2DSquareCellChunkAbstract with ChunkID.chunkRowIndex equal to chunkRowIndex and ChunkID.chunkColIndex equal to chunkColIndex.
 

Methods in uk.ac.leeds.ccg.andyt.grids.core with parameters of type Grid2DSquareCellChunkAbstract
protected  double Grid2DSquareCellAbstract.getCellDouble(Grid2DSquareCellChunkAbstract grid2DSquareCellChunk, int chunkRowIndex, int chunkColIndex, int chunkCellRowIndex, int chunkCellColIndex)
          Returns the cell value at chunk cell row index chunkCellRowIndex, chunk cell col index chunkCellColIndex of Grid2DSquareCellChunkAbstract given by chunk row index chunkRowIndex, chunk col index chunkColIndex as a double.
 double Grid2DSquareCellAbstract.getCellDouble(Grid2DSquareCellChunkAbstract grid2DSquareCellChunk, int chunkRowIndex, int chunkColIndex, int chunkCellRowIndex, int chunkCellColIndex, boolean handleOutOfMemoryError)
          Returns the cell value at chunk cell row index chunkCellRowIndex, chunk cell col index chunkCellColIndex of Grid2DSquareCellChunkAbstract given by chunk row index chunkRowIndex, chunk col index chunkColIndex as a double.
protected  int Grid2DSquareCellAbstract.getCellInt(Grid2DSquareCellChunkAbstract grid2DSquareCellChunk, int chunkRowIndex, int chunkColIndex, int chunkCellRowIndex, int chunkCellColIndex)
          Returns the cell value at chunk cell row index chunkCellRowIndex, chunk cell col index chunkCellColIndex of Grid2DSquareCellChunkAbstract given by chunk row index chunkRowIndex, chunk col index chunkColIndex as a int.
 int Grid2DSquareCellAbstract.getCellInt(Grid2DSquareCellChunkAbstract grid2DSquareCellChunk, int chunkRowIndex, int chunkColIndex, int chunkCellRowIndex, int chunkCellColIndex, boolean handleOutOfMemoryError)
          Returns the cell value at chunk cell row index chunkCellRowIndex, chunk cell col index chunkCellColIndex of Grid2DSquareCellChunkAbstract given by chunk row index chunkRowIndex, chunk col index chunkColIndex as a int.
 void Grid2DSquareCellAbstract.setChunk(Grid2DSquareCellChunkAbstract grid2DSquareCellChunk, Grid2DSquareCellAbstract.ChunkID chunkID, boolean handleOutOfMemoryError)
          Sets the Grid2DSquareCellChunkAbstract with ChunkID equal to chunkID to grid2DSquareCellChunk.