Uses of Interface
org.javimmutable.collections.IMapBuilder
Package
Description
-
Uses of IMapBuilder in org.javimmutable.collections
Modifier and TypeMethodDescriptiondefault IMapBuilder
<K, V> Adds all values in the Collection to the values included in the collection when build() is called.default IMapBuilder
<K, V> Adds all values in the Iterator to the values included in the collection when build() is called.default IMapBuilder
<K, V> Adds all values in the Map to the values included in the collection when build() is called.default IMapBuilder
<K, V> IMapBuilder.add
(IMapBuilder<K, V> other) default IMapBuilder
<K, V> default IMapBuilder
<K, V> Adds all values in the Indexed to the values included in the collection when build() is called.default IMapBuilder
<K, V> IMapBuilder.add
(Indexed<? extends IMapEntry<? extends K, ? extends V>> source, int offset, int limit) Adds all values in the specified range of Indexed to the values included in the collection when build() is called.IMapBuilder.add
(T... source) Adds all values in the array to the values included in the collection when build() is called.IMapBuilder.clear()
Deletes all values.static <K,
V> IMapBuilder <K, V> IMaps.hashedBuilder()
Constructs a Builder to produce unsorted maps.IMap.mapBuilder()
Creates a Builder with the same type signature as this Map.static <K,
V> IMapBuilder <K, V> IMaps.orderedBuilder()
Create a Builder to construct maps whose iterators visit entries in the same order they were added to the map.static <K extends Comparable<K>,
V>
IMapBuilder<K, V> IMaps.sortedBuilder()
Create a Builder to construct sorted maps using the natural order of the keys.static <K,
V> IMapBuilder <K, V> IMaps.sortedBuilder
(Comparator<K> comparator) Create a Builder to construct sorted maps using the specified Comparator for keys.Modifier and TypeMethodDescriptiondefault IMapBuilder
<K, V> IMapBuilder.add
(IMapBuilder<K, V> other) -
Uses of IMapBuilder in org.javimmutable.collections.common
ModifierConstructorDescriptionGenericSetBuilder
(IMapBuilder<T, Boolean> mapBuilder, Func1<IMap<T, Boolean>, ISet<T>> setFactory) -
Uses of IMapBuilder in org.javimmutable.collections.hash
Modifier and TypeMethodDescriptionstatic <K,
V> IMapBuilder <K, V> HashMap.builder()
HashMap.Builder.clear()
EmptyHashMap.mapBuilder()
HashMap.mapBuilder()
-
Uses of IMapBuilder in org.javimmutable.collections.inorder
Modifier and TypeMethodDescriptionstatic <K,
V> IMapBuilder <K, V> OrderedMap.builder()
OrderedMap.mapBuilder()
-
Uses of IMapBuilder in org.javimmutable.collections.tree
Modifier and TypeMethodDescriptionstatic <K extends Comparable<K>,
V>
IMapBuilder<K, V> TreeMap.builder()
static <K,
V> IMapBuilder <K, V> TreeMap.builder
(Comparator<K> comparator) TreeMap.mapBuilder()