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.
| Interface | Description |
|---|---|
| Grid<V> |
A data structure representing a grid keyed by
int row and int column. |
| Grid.Cell<V> |
A cell within the grid compared only using row and column.
|
| Class | Description |
|---|---|
| DenseGrid<V> |
Mutable implementation of the
Grid data structure based on an array. |
| ImmutableCell<V> |
Immutable implementations of the
Grid.Cell data structure. |
| ImmutableGrid<V> |
Immutable implementation of the
Grid data structure. |
| SparseGrid<V> |
Mutable implementation of the
Grid data structure based on hashing. |
Copyright © 2014–2017 Joda.org. All rights reserved.