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.

  • Class
    Description
    Mutable implementation of the Grid data structure based on an array.
    Grid<V>
    A data structure representing a grid keyed by int row and int column.
    A cell within the grid compared only using row and column.
    Immutable implementations of the Grid.Cell data structure.
    Immutable implementation of the Grid data structure.
    Mutable implementation of the Grid data structure based on hashing.