Uses of Class
io.vavr.collection.LinkedHashMap
Packages that use LinkedHashMap
-
Uses of LinkedHashMap in io.vavr.collection
Fields in io.vavr.collection declared as LinkedHashMapModifier and TypeFieldDescriptionprivate static final LinkedHashMap<?, ?> LinkedHashMap.EMPTYprivate final LinkedHashMap<T, Object> LinkedHashSet.mapprivate LinkedHashMap<T, Object> LinkedHashSet.SerializationProxy.mapMethods in io.vavr.collection that return LinkedHashMapModifier and TypeMethodDescriptionprivate static <T> LinkedHashMap<T, Object> LinkedHashSet.addAll(LinkedHashMap<T, Object> initial, Iterable<? extends T> additional) <K2,V2> LinkedHashMap <K2, V2> LinkedHashMap.bimap(Function<? super K, ? extends K2> keyMapper, Function<? super V, ? extends V2> valueMapper) private LinkedHashMap<K, V> LinkedHashMap.createFromEntries(Iterable<Tuple2<K, V>> tuples) LinkedHashMap.distinct()LinkedHashMap.distinctBy(Comparator<? super Tuple2<K, V>> comparator) <U> LinkedHashMap<K, V> LinkedHashMap.distinctBy(Function<? super Tuple2<K, V>, ? extends U> keyExtractor) LinkedHashMap.drop(int n) LinkedHashMap.dropRight(int n) static <K,V> LinkedHashMap <K, V> LinkedHashMap.empty()static <K,V> LinkedHashMap <K, V> Returns a LinkedHashMap containing tuples returned byncalls to a given Suppliers.LinkedHashMap.filter(BiPredicate<? super K, ? super V> predicate) LinkedHashMap.filterKeys(Predicate<? super K> predicate) LinkedHashMap.filterValues(Predicate<? super V> predicate) <K2,V2> LinkedHashMap <K2, V2> LinkedHashMap.init()<K2,V2> LinkedHashMap <K2, V2> LinkedHashMap.map(BiFunction<? super K, ? super V, Tuple2<K2, V2>> mapper) <K2> LinkedHashMap<K2, V> <K2> LinkedHashMap<K2, V> LinkedHashMap.mapKeys(Function<? super K, ? extends K2> keyMapper, BiFunction<? super V, ? super V, ? extends V> valueMerge) <W> LinkedHashMap<K, W> <U extends V>
LinkedHashMap<K, V> LinkedHashMap.merge(Map<? extends K, U> that, BiFunction<? super V, ? super U, ? extends V> collisionResolution) static <K,V> LinkedHashMap <K, V> LinkedHashMap.narrow(LinkedHashMap<? extends K, ? extends V> linkedHashMap) Narrows a widenedLinkedHashMap<? extends K, ? extends V>toLinkedHashMap<K, V>by performing a type-safe cast.static <K,V> LinkedHashMap <K, V> Returns a singletonLinkedHashMap, i.e.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K key, V value) Returns a singletonLinkedHashMap, i.e.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> LinkedHashMap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9, K k10, V v10) Creates a LinkedHashMap of the given list of key-value pairs.static <K,V> LinkedHashMap <K, V> Returns aLinkedHashMap, from a source java.util.Map.static <T,K, V> LinkedHashMap <K, V> LinkedHashMap.ofAll(Stream<? extends T> stream, Function<? super T, ? extends K> keyMapper, Function<? super T, ? extends V> valueMapper) Returns aLinkedHashMap, from entries mapped from stream.static <T,K, V> LinkedHashMap <K, V> LinkedHashMap.ofAll(Stream<? extends T> stream, Function<? super T, Tuple2<? extends K, ? extends V>> entryMapper) Returns aLinkedHashMap, from entries mapped from stream.static <K,V> LinkedHashMap <K, V> Creates a LinkedHashMap of the given entries.static <K,V> LinkedHashMap <K, V> Creates a LinkedHashMap of the given entries.static <K,V> LinkedHashMap <K, V> Creates a LinkedHashMap of the given entries.<U extends V>
LinkedHashMap<K, V> LinkedHashMap.put(Tuple2<? extends K, U> entry, BiFunction<? super V, ? super U, ? extends V> merge) <U extends V>
LinkedHashMap<K, V> LinkedHashMap.put(K key, U value, BiFunction<? super V, ? super U, ? extends V> merge) Associates the specified value with the specified key in this map.LinkedHashMap.reject(BiPredicate<? super K, ? super V> predicate) LinkedHashMap.rejectKeys(Predicate<? super K> predicate) LinkedHashMap.rejectValues(Predicate<? super V> predicate) LinkedHashMap.removeAll(BiPredicate<? super K, ? super V> predicate) Deprecated.LinkedHashMap.removeKeys(Predicate<? super K> predicate) Deprecated.LinkedHashMap.removeValues(Predicate<? super V> predicate) Deprecated.LinkedHashMap.replaceAll(BiFunction<? super K, ? super V, ? extends V> function) LinkedHashMap.replaceValue(K key, V value) LinkedHashMap.scan(Tuple2<K, V> zero, BiFunction<? super Tuple2<K, V>, ? super Tuple2<K, V>, ? extends Tuple2<K, V>> operation) static <K,V> LinkedHashMap <K, V> LinkedHashMap.tabulate(int n, Function<? super Integer, ? extends Tuple2<? extends K, ? extends V>> f) Returns a LinkedHashMap containingnvalues of a given Functionfover a range of integer values from 0 ton - 1.LinkedHashMap.tail()LinkedHashMap.take(int n) LinkedHashMap.takeRight(int n) private static <K,V> LinkedHashMap <K, V> Construct Map with given values and key order.private static <K,V> LinkedHashMap <K, V> LinkedHashMap.wrapNonUnique(Queue<Tuple2<K, V>> list, HashMap<K, V> map) Construct Map with given values and key order.Methods in io.vavr.collection that return types with arguments of type LinkedHashMapModifier and TypeMethodDescriptionstatic <K,V> Collector <Tuple2<K, V>, ArrayList<Tuple2<K, V>>, LinkedHashMap<K, V>> LinkedHashMap.collector()Returns aCollectorwhich may be used in conjunction withStream.collect(java.util.stream.Collector)to obtain aLinkedHashMap.static <K, V, T extends V>
Collector<T, ArrayList<T>, LinkedHashMap<K, V>> Returns aCollectorwhich may be used in conjunction withStream.collect(java.util.stream.Collector)to obtain aLinkedHashMap.static <K,V, T> Collector <T, ArrayList<T>, LinkedHashMap<K, V>> LinkedHashMap.collector(Function<? super T, ? extends K> keyMapper, Function<? super T, ? extends V> valueMapper) Returns aCollectorwhich may be used in conjunction withStream.collect(java.util.stream.Collector)to obtain aLinkedHashMap.Tuple2<V, LinkedHashMap<K, V>> LinkedHashMap.computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) LinkedHashMap.computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) <C> Map<C, LinkedHashMap<K, V>> LinkedHashMap.grouped(int size) LinkedHashMap.initOption()Tuple2<LinkedHashMap<K, V>, LinkedHashMap<K, V>> Tuple2<LinkedHashMap<K, V>, LinkedHashMap<K, V>> LinkedHashMap.sliding(int size) LinkedHashMap.sliding(int size, int step) Tuple2<LinkedHashMap<K, V>, LinkedHashMap<K, V>> Tuple2<LinkedHashMap<K, V>, LinkedHashMap<K, V>> LinkedHashMap.tailOption()Methods in io.vavr.collection with parameters of type LinkedHashMapModifier and TypeMethodDescriptionprivate static <T> LinkedHashMap<T, Object> LinkedHashSet.addAll(LinkedHashMap<T, Object> initial, Iterable<? extends T> additional) static <K,V> LinkedHashMap <K, V> LinkedHashMap.narrow(LinkedHashMap<? extends K, ? extends V> linkedHashMap) Narrows a widenedLinkedHashMap<? extends K, ? extends V>toLinkedHashMap<K, V>by performing a type-safe cast.(package private) static <T> LinkedHashSet<T> LinkedHashSet.wrap(LinkedHashMap<T, Object> map) Constructors in io.vavr.collection with parameters of type LinkedHashMapModifierConstructorDescriptionprivateLinkedHashSet(LinkedHashMap<T, Object> map) (package private)Constructor for the case of serialization, called byLinkedHashSet.writeReplace().