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
Griddata structure based on an array.Grid<V>A data structure representing a grid keyed byintrow andintcolumn.Grid.Cell<V>A cell within the grid compared only using row and column.Immutable implementations of theGrid.Celldata structure.Immutable implementation of theGriddata structure.SparseGrid<V>Mutable implementation of theGriddata structure based on hashing.