The org.servebox.commons.map contains implementations of maps. Those classes are adaptations of the Java Collections Framework.
| Interface | Description | |
|---|---|---|
| IMap | Maps keys to values. | |
| ISortedMap | A Map providing ordering on its keys. |
| Class | Description | |
|---|---|---|
| DictionaryTable |
DictionaryTable is a data structure that maps keys to values. Every value is an object, but unlike the HashTable, every key should be a String. |
|
| Hashtable | This class is a port of the Java hashtable, which maps keys to values. | |
| MapUtils | MapUtils is a helper class with a lot of static methods to manipulate classes that implements IMap interface. | |
| SortedDictionaryTable | SortedDictionartTable return elements sorted by keys. |