T1 - keysT2 - valuespublic class BasicMap<T1,T2>
extends java.lang.Object
| Constructor and Description |
|---|
BasicMap()
Instantiates a new basic map.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(T1 key)
Contains key.
|
T2 |
get(T1 key)
Gets the.
|
java.util.List<T1> |
getKeys()
Gets the keys.
|
void |
put(T1 key,
T2 value)
Put.
|
void |
remove(T1 c)
Removes the.
|