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

Packages that use BuilderFactory
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.hashmap   
 

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

Methods in com.github.andrewoma.dexx.collection that return BuilderFactory
static
<E> BuilderFactory<E,ArrayList<E>>
ArrayList.factory()
           
static
<E> BuilderFactory<E,ConsList<E>>
ConsList.factory()
           
static
<E> BuilderFactory<E,HashSet<E>>
HashSet.factory()
           
static
<E> BuilderFactory<E,IndexedList<E>>
IndexedLists.factory()
           
static
<E> BuilderFactory<E,LinkedList<E>>
LinkedLists.factory()
           
static
<E> BuilderFactory<E,Set<E>>
Sets.factory()
           
static
<E> BuilderFactory<E,SortedSet<E>>
SortedSets.factory()
           
static
<E> BuilderFactory<E,Vector<E>>
Vector.factory()
           
static
<K extends Comparable<? super K>,V>
BuilderFactory<Pair<K,V>,SortedMap<K,V>>
SortedMaps.factory()
           
static
<K,V> BuilderFactory<Pair<K,V>,HashMap<K,V>>
HashMap.factory()
           
static
<K,V> BuilderFactory<Pair<K,V>,Map<K,V>>
Maps.factory()
           
static
<E> BuilderFactory<E,SortedSet<E>>
SortedSets.factory(Comparator<? super E> comparator)
           
static
<E> BuilderFactory<E,TreeSet<E>>
TreeSet.factory(Comparator<? super E> ordering)
           
static
<K,V> BuilderFactory<Pair<K,V>,SortedMap<K,V>>
SortedMaps.factory(Comparator<? super K> comparator)
           
static
<K,V> BuilderFactory<Pair<K,V>,TreeMap<K,V>>
TreeMap.factory(Comparator<? super K> ordering, KeyFunction<K,V> keyFunction)
           
static
<K,V> BuilderFactory<Pair<K,V>,DerivedKeyHashMap<K,V>>
DerivedKeyHashMap.factory(KeyFunction<K,V> keyFunction)
           
 

Uses of BuilderFactory in com.github.andrewoma.dexx.collection.internal.hashmap
 

Methods in com.github.andrewoma.dexx.collection.internal.hashmap that return BuilderFactory
static
<K,V> BuilderFactory<Pair<K,V>,ListMap<K,V>>
ListMap.factory()
           
 



Copyright © 2014. All Rights Reserved.