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

Packages that use SortedMap
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   
 

Uses of SortedMap in com.github.andrewoma.dexx.collection
 

Classes in com.github.andrewoma.dexx.collection that implement SortedMap
 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 SortedMap
static
<K,V> SortedMap<K,V>
SortedMaps.copyOf(Comparator<? super K> comparator, Iterable<Pair<K,V>> iterable)
           
static
<K,V> SortedMap<K,V>
SortedMaps.copyOf(Comparator<? super K> comparator, Iterator<Pair<K,V>> iterator)
           
static
<K,V> SortedMap<K,V>
SortedMaps.copyOf(Comparator<? super K> comparator, Pair<K,V>[] pairs)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOf(Iterable<Pair<K,V>> iterable)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOf(Iterator<Pair<K,V>> iterator)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOf(Pair<K,V>[] pairs)
           
static
<K,V> SortedMap<K,V>
SortedMaps.copyOfTraversable(Comparator<? super K> comparator, Traversable<Pair<K,V>> traversable)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.copyOfTraversable(Traversable<Pair<K,V>> traversable)
           
 SortedMap<K,V> SortedMap.drop(int number)
          Returns a map containing all elements in this map, excluding the first number of elements.
 SortedMap<K,V> TreeMap.drop(int number)
           
 SortedMap<K,V> SortedMap.from(K key, boolean inclusive)
          Returns the bottom of the map starting from the key specified.
 SortedMap<K,V> TreeMap.from(K key, boolean inclusive)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.of()
           
static
<K,V> SortedMap<K,V>
SortedMaps.of(Comparator<? super K> comparator)
           
static
<K,V> SortedMap<K,V>
SortedMaps.of(Comparator<? super K> comparator, K k, V v)
           
static
<K,V> SortedMap<K,V>
SortedMaps.of(Comparator<? super K> comparator, K k1, V v1, K k2, V v2)
           
static
<K,V> SortedMap<K,V>
SortedMaps.of(Comparator<? super K> comparator, K k1, V v1, K k2, V v2, K k3, V v3)
           
static
<K,V> SortedMap<K,V>
SortedMaps.of(Comparator<? super K> comparator, K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
           
static
<K,V> SortedMap<K,V>
SortedMaps.of(Comparator<? super K> comparator, K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.of(K k, V v)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.of(K k1, V v1, K k2, V v2)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.of(K k1, V v1, K k2, V v2, K k3, V v3)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
           
static
<K extends Comparable<? super K>,V>
SortedMap<K,V>
SortedMaps.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
           
 SortedMap<K,V> SortedMap.put(K key, V value)
           
 SortedMap<K,V> SortedMap.range(K from, boolean fromInclusive, K to, boolean toInclusive)
          Returns a subset of the map between the from and to keys specified.
 SortedMap<K,V> TreeMap.range(K from, boolean fromInclusive, K to, boolean toInclusive)
           
 SortedMap<K,V> SortedMap.remove(K key)
           
 SortedMap<K,V> SortedMap.take(int number)
          Returns a list containing the first number of elements from this list.
 SortedMap<K,V> TreeMap.take(int number)
           
 SortedMap<K,V> SortedMap.to(K key, boolean inclusive)
          Returns the top of the map up until the key specified.
 SortedMap<K,V> TreeMap.to(K key, boolean inclusive)
           
 

Methods in com.github.andrewoma.dexx.collection that return types with arguments of type SortedMap
static
<K extends Comparable<? super K>,V>
Builder<Pair<K,V>,SortedMap<K,V>>
SortedMaps.builder()
           
static
<K,V> Builder<Pair<K,V>,SortedMap<K,V>>
SortedMaps.builder(Comparator<? super K> comparator)
           
static
<K extends Comparable<? super K>,V>
BuilderFactory<Pair<K,V>,SortedMap<K,V>>
SortedMaps.factory()
           
static
<K,V> BuilderFactory<Pair<K,V>,SortedMap<K,V>>
SortedMaps.factory(Comparator<? super K> comparator)
           
 

Uses of SortedMap in com.github.andrewoma.dexx.collection.internal.adapter
 

Constructors in com.github.andrewoma.dexx.collection.internal.adapter with parameters of type SortedMap
SortedMapAdapter(SortedMap<K,V> map)
           
 

Uses of SortedMap in com.github.andrewoma.dexx.collection.internal.base
 

Classes in com.github.andrewoma.dexx.collection.internal.base that implement SortedMap
 class AbstractSortedMap<K,V>
           
 

Methods in com.github.andrewoma.dexx.collection.internal.base that return SortedMap
 SortedMap<K,V> AbstractSortedMap.from(K key, boolean inclusive)
           
 SortedMap<K,V> AbstractSortedMap.to(K key, boolean inclusive)
           
 



Copyright © 2014. All Rights Reserved.