Interface | Description |
---|---|
KeyComparator<K> |
A key comparator.
|
MultivaluedMap<K,V> |
A map of key-values pairs.
|
Class | Description |
---|---|
AbstractMultivaluedMap<K,V> |
Abstract skeleton implementation of a
MultivaluedMap that is backed
by a [key, multi-value] store represented as a Map<K, List<V>> . |
KeyComparatorHashMap<K,V> |
A implementation similar to
HashMap but supports the
comparison of keys using a KeyComparator . |
KeyComparatorLinkedHashMap<K,V> |
A implementation similar to
LinkedHashMap but supports the
comparison of keys using a KeyComparator . |
MultivaluedHashMap<K,V> |
A hash table based implementation of
MultivaluedMap interface. |
StringIgnoreCaseKeyComparator |
Case insensitive String key comparator.
|
StringKeyIgnoreCaseMultivaluedMap<V> |
Multivalued map with String keys that are compared with each other using the case insensitive method.
|