Module org.joda.collect
Package org.joda.collect.grid
package org.joda.collect.grid
A
Grid
data structure.
The grid data structure provides a grid of values accessed by row and column.
It differs from Guava's Table
in that the row and column are always int
.
-
ClassDescriptionDenseGrid<V>Mutable implementation of the
Grid
data structure based on an array.Grid<V>A data structure representing a grid keyed byint
row andint
column.Grid.Cell<V>A cell within the grid compared only using row and column.Immutable implementations of theGrid.Cell
data structure.Immutable implementation of theGrid
data structure.SparseGrid<V>Mutable implementation of theGrid
data structure based on hashing.