org.eclipse.collections.api.map.MutableMap Maven / Gradle / Ivy
/*
* Copyright (c) 2018 Goldman Sachs and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.api.map;
import java.util.Map;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableBooleanBag;
import org.eclipse.collections.api.bag.primitive.MutableByteBag;
import org.eclipse.collections.api.bag.primitive.MutableCharBag;
import org.eclipse.collections.api.bag.primitive.MutableDoubleBag;
import org.eclipse.collections.api.bag.primitive.MutableFloatBag;
import org.eclipse.collections.api.bag.primitive.MutableIntBag;
import org.eclipse.collections.api.bag.primitive.MutableLongBag;
import org.eclipse.collections.api.bag.primitive.MutableShortBag;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function0;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.factory.Maps;
import org.eclipse.collections.api.multimap.bag.MutableBagMultimap;
import org.eclipse.collections.api.multimap.set.MutableSetMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.bag.PartitionMutableBag;
import org.eclipse.collections.api.set.MutableSet;
import org.eclipse.collections.api.tuple.Pair;
/**
* A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. The MutableMap interface
* additionally implements some of the methods in the Smalltalk Dictionary protocol.
*/
public interface MutableMap
extends MutableMapIterable, UnsortedMapIterable, Cloneable
{
/**
* Adds all the entries derived from {@code iterable} to {@code this}. The key and value for each entry
* is determined by applying the {@code keyFunction} and {@code valueFunction} to each item in
* {@code collection}. Any entry in {@code map} that has the same key as an entry in {@code this}
* will have its value replaced by that in {@code map}.
*/
MutableMap collectKeysAndValues(
Iterable iterable,
Function super E, ? extends K> keyFunction,
Function super E, ? extends V> valueFunction);
@Override
MutableMap newEmpty();
MutableMap clone();
@Override
MutableMap asUnmodifiable();
@Override
MutableMap asSynchronized();
@Override
MutableSetMultimap flip();
@Override
MutableMap select(Predicate2 super K, ? super V> predicate);
@Override
MutableMap reject(Predicate2 super K, ? super V> predicate);
@Override
MutableMap collectValues(Function2 super K, ? super V, ? extends R> function);
@Override
MutableMap collect(Function2 super K, ? super V, Pair> function);
@Override
MutableMap tap(Procedure super V> procedure);
@Override
MutableBag select(Predicate super V> predicate);
@Override
MutableBag selectWith(Predicate2 super V, ? super P> predicate, P parameter);
@Override
MutableBag reject(Predicate super V> predicate);
@Override
MutableBag rejectWith(Predicate2 super V, ? super P> predicate, P parameter);
@Override
PartitionMutableBag partition(Predicate super V> predicate);
@Override
PartitionMutableBag partitionWith(Predicate2 super V, ? super P> predicate, P parameter);
@Override
MutableBag selectInstancesOf(Class clazz);
@Override
MutableBag collect(Function super V, ? extends R> function);
@Override
MutableBag collectWith(Function2 super V, ? super P, ? extends V1> function, P parameter);
@Override
MutableBooleanBag collectBoolean(BooleanFunction super V> booleanFunction);
@Override
MutableByteBag collectByte(ByteFunction super V> byteFunction);
@Override
MutableCharBag collectChar(CharFunction super V> charFunction);
@Override
MutableDoubleBag collectDouble(DoubleFunction super V> doubleFunction);
@Override
MutableFloatBag collectFloat(FloatFunction super V> floatFunction);
@Override
MutableIntBag collectInt(IntFunction super V> intFunction);
@Override
MutableLongBag collectLong(LongFunction super V> longFunction);
@Override
MutableShortBag collectShort(ShortFunction super V> shortFunction);
@Override
MutableBag collectIf(Predicate super V> predicate, Function super V, ? extends R> function);
@Override
MutableBag flatCollect(Function super V, ? extends Iterable> function);
/**
* @since 9.2
*/
@Override
default MutableBag flatCollectWith(Function2 super V, ? super P, ? extends Iterable> function, P parameter)
{
return this.flatCollect(each -> function.apply(each, parameter));
}
/**
* @deprecated in 6.0. Use {@link OrderedIterable#zip(Iterable)} instead.
*/
@Override
@Deprecated
MutableBag> zip(Iterable that);
/**
* @deprecated in 6.0. Use {@link OrderedIterable#zipWithIndex()} instead.
*/
@Override
@Deprecated
MutableSet> zipWithIndex();
@Override
MutableBagMultimap groupBy(Function super V, ? extends VV> function);
@Override
MutableBagMultimap groupByEach(Function super V, ? extends Iterable> function);
@Override
default MutableMap groupByUniqueKey(Function super V, ? extends V1> function)
{
return this.groupByUniqueKey(function, Maps.mutable.withInitialCapacity(this.size()));
}
@Override
default MutableMap aggregateInPlaceBy(
Function super V, ? extends KK> groupBy,
Function0 extends VV> zeroValueFactory,
Procedure2 super VV, ? super V> mutatingAggregator)
{
MutableMap map = Maps.mutable.empty();
this.forEach(each ->
{
KK key = groupBy.valueOf(each);
VV value = map.getIfAbsentPut(key, zeroValueFactory);
mutatingAggregator.value(value, each);
});
return map;
}
@Override
default MutableMap aggregateBy(
Function super V, ? extends KK> groupBy,
Function0 extends VV> zeroValueFactory,
Function2 super VV, ? super V, ? extends VV> nonMutatingAggregator)
{
return this.aggregateBy(
groupBy,
zeroValueFactory,
nonMutatingAggregator,
Maps.mutable.empty());
}
@Override
default MutableMap aggregateBy(
Function super K, ? extends K1> keyFunction,
Function super V, ? extends V1> valueFunction,
Function0 extends V2> zeroValueFactory,
Function2 super V2, ? super V1, ? extends V2> nonMutatingAggregator)
{
MutableMap map = Maps.mutable.empty();
this.forEachKeyValue((key, value) -> {
map.updateValueWith(keyFunction.valueOf(key), zeroValueFactory, nonMutatingAggregator, valueFunction.valueOf(value));
});
return map;
}
@Override
MutableMap flipUniqueValues();
@Override
MutableMap withKeyValue(K key, V value);
@Override
default MutableMap withMap(Map extends K, ? extends V> map)
{
this.putAll(map);
return this;
}
@Override
MutableMap withAllKeyValues(Iterable extends Pair extends K, ? extends V>> keyValues);
@Override
MutableMap withAllKeyValueArguments(Pair extends K, ? extends V>... keyValuePairs);
@Override
MutableMap withoutKey(K key);
@Override
MutableMap withoutAllKeys(Iterable extends K> keys);
}