Uses of Interface
org.javimmutable.collections.JImmutableListMap

Packages that use JImmutableListMap
org.javimmutable.collections   
org.javimmutable.collections.listmap   
org.javimmutable.collections.util   
 

Uses of JImmutableListMap in org.javimmutable.collections
 

Methods in org.javimmutable.collections that return JImmutableListMap
 JImmutableListMap<K,V> JImmutableListMap.assign(K key, JImmutableList<V> value)
          Sets the list associated with a specific key.
 JImmutableListMap<K,V> JImmutableListMap.delete(K key)
          Deletes the entry for the specified key (if any).
 JImmutableListMap<K,V> JImmutableListMap.deleteAll()
           
 JImmutableListMap<K,V> JImmutableListMap.insert(K key, V value)
          Add value to the list for the specified key.
 

Uses of JImmutableListMap in org.javimmutable.collections.listmap
 

Classes in org.javimmutable.collections.listmap that implement JImmutableListMap
 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.
 

Methods in org.javimmutable.collections.listmap that return JImmutableListMap
 JImmutableListMap<K,V> AbstractJImmutableListMap.assign(K key, JImmutableList<V> value)
           
protected  JImmutableListMap<K,V> JImmutableTreeListMap.create(JImmutableMap<K,JImmutableList<V>> map)
           
protected  JImmutableListMap<K,V> JImmutableInsertOrderListMap.create(JImmutableMap<K,JImmutableList<V>> map)
           
protected  JImmutableListMap<K,V> JImmutableHashListMap.create(JImmutableMap<K,JImmutableList<V>> map)
           
protected abstract  JImmutableListMap<K,V> AbstractJImmutableListMap.create(JImmutableMap<K,JImmutableList<V>> map)
          Implemented by derived classes to create a new instance of the appropriate class.
 JImmutableListMap<K,V> AbstractJImmutableListMap.delete(K key)
           
 JImmutableListMap<K,V> AbstractJImmutableListMap.deleteAll()
           
 JImmutableListMap<K,V> AbstractJImmutableListMap.insert(K key, V value)
           
 

Uses of JImmutableListMap in org.javimmutable.collections.util
 

Methods in org.javimmutable.collections.util that return JImmutableListMap
static
<K,V> JImmutableListMap<K,V>
JImmutables.insertOrderListMap()
          Creates a list map with keys sorted by order they are inserted.
static
<K,V> JImmutableListMap<K,V>
JImmutables.listMap()
          Creates a list map with higher performance but no specific ordering of keys.
static
<K extends Comparable<K>,V>
JImmutableListMap<K,V>
JImmutables.sortedListMap()
          Creates a list map with keys sorted by their natural ordering.
static
<K,V> JImmutableListMap<K,V>
JImmutables.sortedListMap(Comparator<K> comparator)
          Creates a list map with keys sorted by the specified Comparator.
 



Copyright © 2014 Burton Computer Corporation. All rights reserved.