| java.lang.Object org.apache.poi.util.IntList2d
IntList2d | public class IntList2d (Code) | | Provides an interface for interacting with 2d arrays of integers. This
implementation will return 0 for items not yet allocated and automatically
increase the array size for set operations. You never get an index out of
bounds.
author: Glen Stampoultzis (glens at apache.org) version: $Id: IntList2d.java 496526 2007-01-15 22:46:35Z markt $ |
Method Summary | |
public int | get(int col, int row) | public boolean | isAllocated(int col, int row) | public void | set(int col, int row, int value) |
get | public int get(int col, int row)(Code) | | |
isAllocated | public boolean isAllocated(int col, int row)(Code) | | |
set | public void set(int col, int row, int value)(Code) | | |
|
|