private static <T> LinkedHashMap<T,java.lang.Object> |
LinkedHashSet.addAll(LinkedHashMap<T,java.lang.Object> initial,
java.lang.Iterable<? extends T> additional) |
|
<K2,V2> LinkedHashMap<K2,V2> |
LinkedHashMap.bimap(java.util.function.Function<? super K,? extends K2> keyMapper,
java.util.function.Function<? super V,? extends V2> valueMapper) |
|
private LinkedHashMap<K,V> |
LinkedHashMap.createFromEntries(java.lang.Iterable<Tuple2<K,V>> tuples) |
|
LinkedHashMap<K,V> |
LinkedHashMap.distinct() |
|
LinkedHashMap<K,V> |
LinkedHashMap.distinctBy(java.util.Comparator<? super Tuple2<K,V>> comparator) |
|
<U> LinkedHashMap<K,V> |
LinkedHashMap.distinctBy(java.util.function.Function<? super Tuple2<K,V>,? extends U> keyExtractor) |
|
LinkedHashMap<K,V> |
LinkedHashMap.drop(int n) |
|
LinkedHashMap<K,V> |
LinkedHashMap.dropRight(int n) |
|
LinkedHashMap<K,V> |
LinkedHashMap.dropUntil(java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.dropWhile(java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.empty() |
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.fill(int n,
java.util.function.Supplier<? extends Tuple2<? extends K,? extends V>> s) |
Returns a LinkedHashMap containing tuples returned by n calls to a given Supplier s .
|
LinkedHashMap<K,V> |
LinkedHashMap.filter(java.util.function.BiPredicate<? super K,? super V> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.filter(java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.filterKeys(java.util.function.Predicate<? super K> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.filterValues(java.util.function.Predicate<? super V> predicate) |
|
<K2,V2> LinkedHashMap<K2,V2> |
LinkedHashMap.flatMap(java.util.function.BiFunction<? super K,? super V,? extends java.lang.Iterable<Tuple2<K2,V2>>> mapper) |
|
LinkedHashMap<K,V> |
LinkedHashMap.init() |
|
<K2,V2> LinkedHashMap<K2,V2> |
LinkedHashMap.map(java.util.function.BiFunction<? super K,? super V,Tuple2<K2,V2>> mapper) |
|
<K2> LinkedHashMap<K2,V> |
LinkedHashMap.mapKeys(java.util.function.Function<? super K,? extends K2> keyMapper) |
|
<K2> LinkedHashMap<K2,V> |
LinkedHashMap.mapKeys(java.util.function.Function<? super K,? extends K2> keyMapper,
java.util.function.BiFunction<? super V,? super V,? extends V> valueMerge) |
|
<W> LinkedHashMap<K,W> |
LinkedHashMap.mapValues(java.util.function.Function<? super V,? extends W> mapper) |
|
LinkedHashMap<K,V> |
LinkedHashMap.merge(Map<? extends K,? extends V> that) |
|
<U extends V> LinkedHashMap<K,V> |
LinkedHashMap.merge(Map<? extends K,U> that,
java.util.function.BiFunction<? super V,? super U,? extends V> collisionResolution) |
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.narrow(LinkedHashMap<? extends K,? extends V> linkedHashMap) |
Narrows a widened LinkedHashMap<? extends K, ? extends V> to LinkedHashMap<K, V>
by performing a type-safe cast.
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.of(Tuple2<? extends K,? extends V> entry) |
Returns a singleton LinkedHashMap , i.e.
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.of(K key,
V value) |
Returns a singleton LinkedHashMap , 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> |
LinkedHashMap.ofAll(java.util.Map<? extends K,? extends V> map) |
Returns a LinkedHashMap , from a source java.util.Map.
|
static <T,K,V> LinkedHashMap<K,V> |
LinkedHashMap.ofAll(java.util.stream.Stream<? extends T> stream,
java.util.function.Function<? super T,? extends K> keyMapper,
java.util.function.Function<? super T,? extends V> valueMapper) |
Returns a LinkedHashMap , from entries mapped from stream.
|
static <T,K,V> LinkedHashMap<K,V> |
LinkedHashMap.ofAll(java.util.stream.Stream<? extends T> stream,
java.util.function.Function<? super T,Tuple2<? extends K,? extends V>> entryMapper) |
Returns a LinkedHashMap , from entries mapped from stream.
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.ofEntries(Tuple2<? extends K,? extends V>... entries) |
Creates a LinkedHashMap of the given entries.
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.ofEntries(java.lang.Iterable<? extends Tuple2<? extends K,? extends V>> entries) |
Creates a LinkedHashMap of the given entries.
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.ofEntries(java.util.Map.Entry<? extends K,? extends V>... entries) |
Creates a LinkedHashMap of the given entries.
|
LinkedHashMap<K,V> |
LinkedHashMap.orElse(java.lang.Iterable<? extends Tuple2<K,V>> other) |
|
LinkedHashMap<K,V> |
LinkedHashMap.orElse(java.util.function.Supplier<? extends java.lang.Iterable<? extends Tuple2<K,V>>> supplier) |
|
LinkedHashMap<K,V> |
LinkedHashMap.peek(java.util.function.Consumer<? super Tuple2<K,V>> action) |
|
LinkedHashMap<K,V> |
LinkedHashMap.put(Tuple2<? extends K,? extends V> entry) |
|
<U extends V> LinkedHashMap<K,V> |
LinkedHashMap.put(Tuple2<? extends K,U> entry,
java.util.function.BiFunction<? super V,? super U,? extends V> merge) |
|
<U extends V> LinkedHashMap<K,V> |
LinkedHashMap.put(K key,
U value,
java.util.function.BiFunction<? super V,? super U,? extends V> merge) |
|
LinkedHashMap<K,V> |
LinkedHashMap.put(K key,
V value) |
Associates the specified value with the specified key in this map.
|
LinkedHashMap<K,V> |
LinkedHashMap.reject(java.util.function.BiPredicate<? super K,? super V> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.reject(java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.rejectKeys(java.util.function.Predicate<? super K> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.rejectValues(java.util.function.Predicate<? super V> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.remove(K key) |
|
LinkedHashMap<K,V> |
LinkedHashMap.removeAll(java.lang.Iterable<? extends K> keys) |
|
LinkedHashMap<K,V> |
LinkedHashMap.removeAll(java.util.function.BiPredicate<? super K,? super V> predicate) |
Deprecated.
|
LinkedHashMap<K,V> |
LinkedHashMap.removeKeys(java.util.function.Predicate<? super K> predicate) |
Deprecated.
|
LinkedHashMap<K,V> |
LinkedHashMap.removeValues(java.util.function.Predicate<? super V> predicate) |
Deprecated.
|
LinkedHashMap<K,V> |
LinkedHashMap.replace(Tuple2<K,V> currentElement,
Tuple2<K,V> newElement) |
|
LinkedHashMap<K,V> |
LinkedHashMap.replace(K key,
V oldValue,
V newValue) |
|
LinkedHashMap<K,V> |
LinkedHashMap.replaceAll(Tuple2<K,V> currentElement,
Tuple2<K,V> newElement) |
|
LinkedHashMap<K,V> |
LinkedHashMap.replaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> function) |
|
LinkedHashMap<K,V> |
LinkedHashMap.replaceValue(K key,
V value) |
|
LinkedHashMap<K,V> |
LinkedHashMap.retainAll(java.lang.Iterable<? extends Tuple2<K,V>> elements) |
|
LinkedHashMap<K,V> |
LinkedHashMap.scan(Tuple2<K,V> zero,
java.util.function.BiFunction<? super Tuple2<K,V>,? super Tuple2<K,V>,? extends Tuple2<K,V>> operation) |
|
static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.tabulate(int n,
java.util.function.Function<? super java.lang.Integer,? extends Tuple2<? extends K,? extends V>> f) |
Returns a LinkedHashMap containing n values of a given Function f
over a range of integer values from 0 to n - 1 .
|
LinkedHashMap<K,V> |
LinkedHashMap.tail() |
|
LinkedHashMap<K,V> |
LinkedHashMap.take(int n) |
|
LinkedHashMap<K,V> |
LinkedHashMap.takeRight(int n) |
|
LinkedHashMap<K,V> |
LinkedHashMap.takeUntil(java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
LinkedHashMap<K,V> |
LinkedHashMap.takeWhile(java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
private static <K,V> LinkedHashMap<K,V> |
LinkedHashMap.wrap(Queue<Tuple2<K,V>> list,
HashMap<K,V> map) |
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.
|