Uses of Interface
org.javimmutable.collections.Mapped

Packages that use Mapped
org.javimmutable.collections   
org.javimmutable.collections.common   
org.javimmutable.collections.hash   
org.javimmutable.collections.inorder   
org.javimmutable.collections.listmap   
org.javimmutable.collections.tree   
 

Uses of Mapped in org.javimmutable.collections
 

Subinterfaces of Mapped in org.javimmutable.collections
 interface JImmutableListMap<K,V>
          Interface for maps that map keys to lists of values.
 interface JImmutableMap<K,V>
          Interface for persistent data structures that allow storage and retrieval of key/value pairs.
 

Uses of Mapped in org.javimmutable.collections.common
 

Classes in org.javimmutable.collections.common that implement Mapped
 class AbstractJImmutableMap<K,V>
           
 

Uses of Mapped in org.javimmutable.collections.hash
 

Classes in org.javimmutable.collections.hash that implement Mapped
 class EmptyHashMap<K,V>
          Singleton implementation of JImmutableMap that contains no elements.
 class JImmutableHashMap<T,K,V>
           
 

Uses of Mapped in org.javimmutable.collections.inorder
 

Classes in org.javimmutable.collections.inorder that implement Mapped
 class JImmutableInsertOrderMap<K,V>
          JImmutableMap implementation that allows iteration over members in the order in which they were inserted into the map.
 

Uses of Mapped in org.javimmutable.collections.listmap
 

Classes in org.javimmutable.collections.listmap that implement Mapped
 class AbstractJImmutableListMap<K,V>
           
 class JImmutableHashListMap<K,V>
          JImmutableListMap using a hash map for fast lookup.
 class JImmutableInsertOrderListMap<K,V>
          JImmutableListMap implementation that allows keys to be traversed in the same order as they were inserted into the collection.
 class JImmutableTreeListMap<K,V>
          JImmutableListMap implementation that allows keys to be traversed in sorted order using a Comparator of the natural ordering of the keys if they implement Comparable.
 

Uses of Mapped in org.javimmutable.collections.tree
 

Classes in org.javimmutable.collections.tree that implement Mapped
 class JImmutableTreeMap<K,V>
           
 



Copyright © 2014 Burton Computer Corporation. All rights reserved.