Uses of Interface
org.joda.collect.grid.Grid.Cell

Uses of Grid.Cell in org.joda.collect.grid
 

Classes in org.joda.collect.grid that implement Grid.Cell
 class ImmutableCell<V>
          Immutable implementations of the Grid.Cell data structure.
 

Methods in org.joda.collect.grid that return Grid.Cell
 Grid.Cell<V> SparseGrid.cell(int row, int column)
           
 Grid.Cell<V> Grid.cell(int row, int column)
          Gets the cell at the specified row-column.
 Grid.Cell<V> DenseGrid.cell(int row, int column)
           
 

Methods in org.joda.collect.grid that return types with arguments of type Grid.Cell
 SortedSet<Grid.Cell<V>> SparseGrid.cells()
           
 Set<Grid.Cell<V>> Grid.cells()
          Gets the complete set of cells.
 Set<Grid.Cell<V>> DenseGrid.cells()
           
 

Methods in org.joda.collect.grid with parameters of type Grid.Cell
static
<R> ImmutableCell<R>
ImmutableCell.copyOf(Grid.Cell<? extends R> cell)
          Obtains an instance of Cell.
static
<R> ImmutableGrid<R>
ImmutableGrid.copyOf(int rowCount, int columnCount, Grid.Cell<R> cell)
          Obtains an immutable grid with one cell.
 

Method parameters in org.joda.collect.grid with type arguments of type Grid.Cell
static
<R> ImmutableGrid<R>
ImmutableGrid.copyOf(int rowCount, int columnCount, Iterable<? extends Grid.Cell<R>> cells)
          Obtains an immutable grid by copying a set of cells.
static
<R> ImmutableGrid<R>
ImmutableGrid.copyOfDeriveCounts(Iterable<? extends Grid.Cell<R>> cells)
          Obtains an immutable grid by copying a set of cells, deriving the row and column count.
 



Copyright © 2014–2017 Joda.org. All rights reserved.