public class GridMap<T>
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
protected java.util.HashMap<java.lang.Long,T> |
map |
| Constructor and Description |
|---|
GridMap() |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
containsKey(int x,
int y) |
T |
get(int x,
int y) |
java.util.Set<java.lang.Long> |
keys() |
void |
put(int x,
int y,
T t) |
int |
size() |
java.util.Collection<T> |
values() |
protected java.util.HashMap<java.lang.Long,T> map