Uses of Interface
com.github.andrewoma.dexx.collection.BuilderFactory
Packages that use BuilderFactory
Package
Description
Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java.
-
Uses of BuilderFactory in com.github.andrewoma.dexx.collection
Methods in com.github.andrewoma.dexx.collection that return BuilderFactoryModifier and TypeMethodDescriptionstatic <E> @NotNull BuilderFactory
<E, ArrayList<E>> ArrayList.factory()
static <E> @NotNull BuilderFactory
<E, IndexedList<E>> ArrayLists.factory()
static <E> @NotNull BuilderFactory
<E, ConsList<E>> ConsList.factory()
static <K,
V> @NotNull BuilderFactory <Pair<K, V>, DerivedKeyHashMap<K, V>> DerivedKeyHashMap.factory
(KeyFunction<K, V> keyFunction) static <K,
V> @NotNull BuilderFactory <Pair<K, V>, HashMap<K, V>> HashMap.factory()
static <E> @NotNull BuilderFactory
<E, HashSet<E>> HashSet.factory()
static <E> @NotNull BuilderFactory
<E, IndexedList<E>> IndexedLists.factory()
static <E> @NotNull BuilderFactory
<E, LinkedList<E>> LinkedLists.factory()
static <K,
V> @NotNull BuilderFactory <Pair<K, V>, Map<K, V>> Maps.factory()
static <E> @NotNull BuilderFactory
<E, Set<E>> Sets.factory()
static <K extends Comparable<? super K>,
V>
@NotNull BuilderFactory<Pair<K, V>, SortedMap<K, V>> SortedMaps.factory()
static <K,
V> @NotNull BuilderFactory <Pair<K, V>, SortedMap<K, V>> SortedMaps.factory
(Comparator<? super K> comparator) static <E> @NotNull BuilderFactory
<E, SortedSet<E>> SortedSets.factory()
static <E> @NotNull BuilderFactory
<E, SortedSet<E>> SortedSets.factory
(Comparator<? super E> comparator) static <K,
V> @NotNull BuilderFactory <Pair<K, V>, TreeMap<K, V>> TreeMap.factory
(Comparator<? super K> ordering, KeyFunction<K, V> keyFunction) static <E> @NotNull BuilderFactory
<E, TreeSet<E>> TreeSet.factory
(Comparator<? super E> ordering) static <E> @NotNull BuilderFactory
<E, Vector<E>> Vector.factory()
-
Uses of BuilderFactory in com.github.andrewoma.dexx.collection.internal.hashmap
Methods in com.github.andrewoma.dexx.collection.internal.hashmap that return BuilderFactoryModifier and TypeMethodDescriptionstatic <K,
V> @NotNull BuilderFactory <Pair<K, V>, ListMap<K, V>> ListMap.factory()