Package org.joda.collect.grid

A Grid data structure.

See:
          Description

Interface Summary
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 Summary
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.
 

Package org.joda.collect.grid Description

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.



Copyright © 2014 Joda.org. All rights reserved.