Uses of Interface
com.github.andrewoma.dexx.collection.Map

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
<K,V> Map<K,V>
Maps.copyOf(Iterable<Pair<K,V>> iterable)
           
static
<K,V> Map<K,V>
Maps.copyOf(Iterator<Pair<K,V>> iterator)
           
static
<K,V> Map<K,V>
Maps.copyOf(Pair<K,V>[] pairs)
           
static
<K,V> Map<K,V>
Maps.copyOfTraversable(Traversable<Pair<K,V>> traversable)
           
static
<K,V> Map<K,V>
Maps.of()
           
static
<K,V> Map<K,V>
Maps.of(K k, V v)
           
static
<K,V> Map<K,V>
Maps.of(K k1, V v1, K k2, V v2)
           
static
<K,V> Map<K,V>
Maps.of(K k1, V v1, K k2, V v2, K k3, V v3)
           
static
<K,V> Map<K,V>
Maps.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
           
static
<K,V> Map<K,V>
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
<K,V> Builder<Pair<K,V>,Map<K,V>>
Maps.builder()
           
static
<K,V> BuilderFactory<Pair<K,V>,Map<K,V>>
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>
           
 



Copyright © 2014. All Rights Reserved.