|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Map | |
|---|---|
| com.github.andrewoma.dexx.collection | Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java. |
| com.github.andrewoma.dexx.collection.internal.adapter | |
| com.github.andrewoma.dexx.collection.internal.base | |
| com.github.andrewoma.dexx.collection.internal.hashmap | |
| Uses of Map in com.github.andrewoma.dexx.collection |
|---|
| Subinterfaces of Map in com.github.andrewoma.dexx.collection | |
|---|---|
interface |
SortedMap<K,V>
SortedMap defines the interface for maps that are sorted by their key. |
| Classes in com.github.andrewoma.dexx.collection that implement Map | |
|---|---|
class |
DerivedKeyHashMap<K,V>
DerivedKeyHashMap is a HashMap variant where the key for the Map is derived from the value stored. |
class |
HashMap<K,V>
HashMap is an implementation of Map based on a hash trie. |
class |
TreeMap<K,V>
TreeMap is an implementation of SortedMap based on a
red-black tree. |
| Methods in com.github.andrewoma.dexx.collection that return Map | ||
|---|---|---|
static
|
Maps.copyOf(Iterable<Pair<K,V>> iterable)
|
|
static
|
Maps.copyOf(Iterator<Pair<K,V>> iterator)
|
|
static
|
Maps.copyOf(Pair<K,V>[] pairs)
|
|
static
|
Maps.copyOfTraversable(Traversable<Pair<K,V>> traversable)
|
|
static
|
Maps.of()
|
|
static
|
Maps.of(K k,
V v)
|
|
static
|
Maps.of(K k1,
V v1,
K k2,
V v2)
|
|
static
|
Maps.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3)
|
|
static
|
Maps.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4)
|
|
static
|
Maps.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5)
|
|
Map<K,V> |
Map.put(K key,
V value)
Returns a map with the value specified associated to the key specified. |
|
Map<K,V> |
Map.remove(K key)
Returns a map with the value associated with the key removed if it exists. |
|
| Methods in com.github.andrewoma.dexx.collection that return types with arguments of type Map | ||
|---|---|---|
static
|
Maps.builder()
|
|
static
|
Maps.factory()
|
|
| Uses of Map in com.github.andrewoma.dexx.collection.internal.adapter |
|---|
| Constructors in com.github.andrewoma.dexx.collection.internal.adapter with parameters of type Map | |
|---|---|
MapAdapter(Map<K,V> map)
|
|
| Uses of Map in com.github.andrewoma.dexx.collection.internal.base |
|---|
| Classes in com.github.andrewoma.dexx.collection.internal.base that implement Map | |
|---|---|
class |
AbstractMap<K,V>
|
class |
AbstractSortedMap<K,V>
|
| Uses of Map in com.github.andrewoma.dexx.collection.internal.hashmap |
|---|
| Classes in com.github.andrewoma.dexx.collection.internal.hashmap that implement Map | |
|---|---|
class |
ListMap<K,V>
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||