@Deprecated public final class ConcurrentMutableHashMap<K,V> extends AbstractMutableMap<K,V> implements com.gs.collections.api.map.ConcurrentMutableMap<K,V>, java.io.Serializable
ConcurrentHashMap,
Serialized FormAbstractMutableMap.ValuesCollectionCommon<V>| Constructor and Description |
|---|
ConcurrentMutableHashMap(java.util.concurrent.ConcurrentMap<K,V> delegate)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Deprecated.
|
com.gs.collections.api.map.MutableMap<K,V> |
clone()
Deprecated.
Returns a string representation of this map.
|
<E> com.gs.collections.api.map.MutableMap<K,V> |
collectKeysAndValues(java.util.Collection<E> collection,
com.gs.collections.api.block.function.Function<? super E,? extends K> keyFunction,
com.gs.collections.api.block.function.Function<? super E,? extends V> valueFunction)
Deprecated.
Adds all the entries derived from
collection to this. |
boolean |
containsKey(java.lang.Object key)
Deprecated.
|
boolean |
containsValue(java.lang.Object value)
Deprecated.
|
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet()
Deprecated.
|
boolean |
equals(java.lang.Object o)
Deprecated.
Follows the same general contract as
Map.equals(Object). |
void |
forEach(com.gs.collections.api.block.procedure.Procedure<? super V> procedure)
Deprecated.
The procedure is executed for each element in the iterable.
|
void |
forEachKey(com.gs.collections.api.block.procedure.Procedure<? super K> procedure)
Deprecated.
Calls the
procedure with each key of the map. |
void |
forEachKeyValue(com.gs.collections.api.block.procedure.Procedure2<? super K,? super V> procedure)
Deprecated.
Calls the
procedure with each key-value pair of the map. |
void |
forEachValue(com.gs.collections.api.block.procedure.Procedure<? super V> procedure)
Deprecated.
Calls the procedure with each value of the map.
|
<P> void |
forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super V,? super P> procedure,
P parameter)
Deprecated.
The procedure2 is evaluated for each element in the iterable with the specified parameter provided
as the second argument.
|
void |
forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure)
Deprecated.
Iterates over the iterable passing each element and the current relative int index to the specified instance of
ObjectIntProcedure
|
V |
get(java.lang.Object key)
Deprecated.
|
V |
getIfAbsent(K key,
com.gs.collections.api.block.function.Function0<? extends V> function)
Deprecated.
Return the value in the Map that corresponds to the specified key, or if there is no value at the key, return the
result of evaluating the specified Function0.
|
V |
getIfAbsentPut(K key,
com.gs.collections.api.block.function.Function<? super K,? extends V> factory)
Deprecated.
|
V |
getIfAbsentPut(K key,
com.gs.collections.api.block.function.Function0<? extends V> function)
Deprecated.
Get and return the value in the Map at the specified key.
|
<P> V |
getIfAbsentPutWith(K key,
com.gs.collections.api.block.function.Function<? super P,? extends V> function,
P parameter)
Deprecated.
Get and return the value in the Map at the specified key.
|
V |
getIfAbsentValue(K key,
V value)
Deprecated.
Return the value in the Map that corresponds to the specified key, or if there is no value at the key, return
value. |
<P> V |
getIfAbsentWith(K key,
com.gs.collections.api.block.function.Function<? super P,? extends V> function,
P parameter)
Deprecated.
Return the value in the Map that corresponds to the specified key, or if there is no value at the key, return the
result of evaluating the specified function and parameter.
|
int |
hashCode()
Deprecated.
Follows the same general contract as
Map.hashCode(). |
<A> A |
ifPresentApply(K key,
com.gs.collections.api.block.function.Function<? super V,? extends A> function)
Deprecated.
If there is a value in the Map that corresponds to the specified key return the result of applying the specified
Function on the value, otherwise return null.
|
boolean |
isEmpty()
Deprecated.
Returns true if this iterable has zero items.
|
java.util.Iterator<V> |
iterator()
Deprecated.
|
java.util.Set<K> |
keySet()
Deprecated.
|
com.gs.collections.api.map.MutableMap<K,V> |
newEmpty()
Deprecated.
Creates a new instance of the same type, using the default capacity and growth parameters.
|
<K,V> com.gs.collections.api.map.MutableMap<K,V> |
newEmpty(int capacity)
Deprecated.
Creates a new instance of the same type, using the given capacity and the default growth parameters.
|
static <NK,NV> ConcurrentMutableHashMap<NK,NV> |
newMap()
Deprecated.
|
static <NK,NV> ConcurrentMutableHashMap<NK,NV> |
newMap(int initialCapacity)
Deprecated.
|
static <NK,NV> ConcurrentMutableHashMap<NK,NV> |
newMap(int initialCapacity,
float loadFactor,
int concurrencyLevel)
Deprecated.
|
static <NK,NV> ConcurrentMutableHashMap<NK,NV> |
newMap(java.util.Map<NK,NV> map)
Deprecated.
|
boolean |
notEmpty()
Deprecated.
The English equivalent of !this.isEmpty()
|
V |
put(K key,
V value)
Deprecated.
|
void |
putAll(java.util.Map<? extends K,? extends V> map)
Deprecated.
|
V |
putIfAbsent(K key,
V value)
Deprecated.
|
V |
remove(java.lang.Object key)
Deprecated.
|
boolean |
remove(java.lang.Object key,
java.lang.Object value)
Deprecated.
|
V |
removeKey(K key)
Deprecated.
Remove an entry from the map at the specified
key. |
V |
replace(K key,
V value)
Deprecated.
|
boolean |
replace(K key,
V oldValue,
V newValue)
Deprecated.
|
int |
size()
Deprecated.
Returns the number of items in this iterable.
|
com.gs.collections.api.map.ImmutableMap<K,V> |
toImmutable()
Deprecated.
Returns an immutable copy of this map.
|
java.lang.String |
toString()
Deprecated.
Returns a string representation of this MapIterable.
|
V |
updateValue(K key,
com.gs.collections.api.block.function.Function0<? extends V> factory,
com.gs.collections.api.block.function.Function<? super V,? extends V> function)
Deprecated.
Looks up the value associated with
key, applies the function to it, and replaces the value. |
<P> V |
updateValueWith(K key,
com.gs.collections.api.block.function.Function0<? extends V> factory,
com.gs.collections.api.block.function.Function2<? super V,? super P,? extends V> function,
P parameter)
Deprecated.
Same as
MutableMap.updateValue(Object, Function0, Function) with a Function2 and specified parameter which is
passed to the function. |
java.util.Collection<V> |
values()
Deprecated.
|
ConcurrentMutableHashMap<K,V> |
withAllKeyValueArguments(com.gs.collections.api.tuple.Pair<? extends K,? extends V>... keyValues)
Deprecated.
Convenience var-args version of withAllKeyValues
|
ConcurrentMutableHashMap<K,V> |
withAllKeyValues(java.lang.Iterable<? extends com.gs.collections.api.tuple.Pair<? extends K,? extends V>> keyValues)
Deprecated.
This method allows mutable, fixed size, and immutable maps the ability to add elements to their existing
elements.
|
ConcurrentMutableHashMap<K,V> |
withKeyValue(K key,
V value)
Deprecated.
This method allows mutable, fixed size, and immutable maps the ability to add elements to their existing
elements.
|
ConcurrentMutableHashMap<K,V> |
withoutAllKeys(java.lang.Iterable<? extends K> keys)
Deprecated.
This method allows mutable, fixed size, and immutable maps the ability to remove elements from their existing
elements.
|
ConcurrentMutableHashMap<K,V> |
withoutKey(K key)
Deprecated.
This method allows mutable, fixed size, and immutable maps the ability to remove elements from their existing
elements.
|
aggregateBy, aggregateInPlaceBy, asSynchronized, asUnmodifiable, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectValues, detect, flatCollect, getIfAbsentPutWithKey, groupBy, groupByEach, keysView, keyValuesView, partition, reject, reject, select, select, selectInstancesOf, valuesView, zip, zipWithIndexallSatisfy, anySatisfy, appendString, appendString, appendString, asLazy, chunk, collect, collectIf, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, detect, detectIfNone, flatCollect, getFirst, getLast, groupBy, groupByEach, injectInto, injectInto, injectInto, injectInto, injectInto, isAbsent, keyAndValueEquals, keyAndValueHashCode, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, reject, rejectWith, select, selectWith, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, zip, zipWithIndexfinalize, getClass, notify, notifyAll, wait, wait, waitaggregateBy, aggregateInPlaceBy, asSynchronized, asUnmodifiable, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectValues, flatCollect, getIfAbsentPutWithKey, groupBy, groupByEach, partition, reject, reject, select, select, selectInstancesOf, zip, zipWithIndexdetect, keysView, keyValuesView, valuesViewallSatisfy, anySatisfy, appendString, appendString, appendString, asLazy, chunk, collect, collectIf, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, detect, detectIfNone, flatCollect, getFirst, getLast, groupBy, groupByEach, injectInto, injectInto, injectInto, injectInto, injectInto, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, reject, rejectWith, select, selectWith, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, zip, zipWithIndexpublic static <NK,NV> ConcurrentMutableHashMap<NK,NV> newMap()
public static <NK,NV> ConcurrentMutableHashMap<NK,NV> newMap(int initialCapacity)
public static <NK,NV> ConcurrentMutableHashMap<NK,NV> newMap(int initialCapacity, float loadFactor, int concurrencyLevel)
public static <NK,NV> ConcurrentMutableHashMap<NK,NV> newMap(java.util.Map<NK,NV> map)
public ConcurrentMutableHashMap<K,V> withKeyValue(K key, V value)
com.gs.collections.api.map.MutableMap
map = map.withKeyValue("new key", "new value");
In the case of FixedSizeMap, a new instance will be returned by withKeyValue, and any variables that
previously referenced the original map will need to be redirected to reference the new instance. In the case
of a FastMap or UnifiedMap, you will be replacing the reference to map with map, since FastMap and UnifiedMap
will both return "this" after calling put on themselves.withKeyValue in interface com.gs.collections.api.map.MutableMap<K,V>withKeyValue in class AbstractMutableMap<K,V>Map.put(Object, Object)public ConcurrentMutableHashMap<K,V> withAllKeyValues(java.lang.Iterable<? extends com.gs.collections.api.tuple.Pair<? extends K,? extends V>> keyValues)
com.gs.collections.api.map.MutableMap
map = map.withAllKeyValues(FastList.newListWith(PairImpl.of("new key", "new value")));
In the case of FixedSizeMap, a new instance will be returned by withAllKeyValues, and any variables that
previously referenced the original map will need to be redirected to reference the new instance. In the case
of a FastMap or UnifiedMap, you will be replacing the reference to map with map, since FastMap and UnifiedMap
will both return "this" after calling put on themselves.withAllKeyValues in interface com.gs.collections.api.map.MutableMap<K,V>withAllKeyValues in class AbstractMutableMap<K,V>Map.put(Object, Object)public ConcurrentMutableHashMap<K,V> withAllKeyValueArguments(com.gs.collections.api.tuple.Pair<? extends K,? extends V>... keyValues)
com.gs.collections.api.map.MutableMapwithAllKeyValueArguments in interface com.gs.collections.api.map.MutableMap<K,V>withAllKeyValueArguments in class AbstractMutableMap<K,V>MutableMap.withAllKeyValues(Iterable)public ConcurrentMutableHashMap<K,V> withoutKey(K key)
com.gs.collections.api.map.MutableMap
map = map.withoutKey("key");
In the case of FixedSizeMap, a new instance will be returned by withoutKey, and any variables that previously
referenced the original map will need to be redirected to reference the new instance. In the case of a FastMap
or UnifiedMap, you will be replacing the reference to map with map, since FastMap and UnifiedMap will both return
"this" after calling remove on themselves.withoutKey in interface com.gs.collections.api.map.MutableMap<K,V>withoutKey in class AbstractMutableMap<K,V>Map.remove(Object)public ConcurrentMutableHashMap<K,V> withoutAllKeys(java.lang.Iterable<? extends K> keys)
com.gs.collections.api.map.MutableMap
map = map.withoutAllKeys(FastList.newListWith("key1", "key2"));
In the case of FixedSizeMap, a new instance will be returned by withoutAllKeys, and any variables that previously
referenced the original map will need to be redirected to reference the new instance. In the case of a FastMap
or UnifiedMap, you will be replacing the reference to map with map, since FastMap and UnifiedMap will both return
"this" after calling remove on themselves.withoutAllKeys in interface com.gs.collections.api.map.MutableMap<K,V>withoutAllKeys in class AbstractMutableMap<K,V>Map.remove(Object)public java.lang.String toString()
com.gs.collections.api.map.MapIterableString.valueOf(Object).public com.gs.collections.api.map.MutableMap<K,V> clone()
AbstractMutableMapThis implementation creates an empty string buffer, appends a left brace, and iterates over the map's entrySet view, appending the string representation of each map.entry in turn. After appending each entry except the last, the string ", " is appended. Finally a right brace is appended. A string is obtained from the stringbuffer, and returned.
public <K,V> com.gs.collections.api.map.MutableMap<K,V> newEmpty(int capacity)
AbstractMutableMapnewEmpty in class AbstractMutableMap<K,V>public boolean notEmpty()
com.gs.collections.api.RichIterablenotEmpty in interface com.gs.collections.api.RichIterable<V>notEmpty in class AbstractMapIterable<K,V>public void forEach(com.gs.collections.api.block.procedure.Procedure<? super V> procedure)
com.gs.collections.api.InternalIterablee.g. people.forEach(new Procedure() { public void value(Person person) { LOGGER.info(person.getName()); } });
forEach in interface com.gs.collections.api.InternalIterable<V>forEach in class AbstractMapIterable<K,V>public void forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure)
com.gs.collections.api.InternalIterablee.g. people.forEachWithIndex(new ObjectIntProcedure() { public void value(Person person, int index) { LOGGER.info("Index: " + index + " person: " + person.getName()); } });
forEachWithIndex in interface com.gs.collections.api.InternalIterable<V>forEachWithIndex in class AbstractMapIterable<K,V>public int size()
com.gs.collections.api.RichIterablepublic boolean isEmpty()
com.gs.collections.api.RichIterablepublic java.util.Iterator<V> iterator()
iterator in interface java.lang.Iterable<V>iterator in class AbstractMutableMap<K,V>public V remove(java.lang.Object key)
public java.util.Set<K> keySet()
public java.util.Collection<V> values()
public com.gs.collections.api.map.MutableMap<K,V> newEmpty()
com.gs.collections.api.map.MutableMappublic void forEachValue(com.gs.collections.api.block.procedure.Procedure<? super V> procedure)
com.gs.collections.api.map.MapIterable
Set<String> result = UnifiedSet.newSet();
MutableMap<Integer, String> map = this.newMapWithKeysValues(1, "One", 2, "Two", 3, "Three", 4, "Four");
map.forEachValue(new CollectionAddProcedure<String>(result));
Verify.assertSetsEqual(UnifiedSet.newSetWith("One", "Two", "Three", "Four"), result);
forEachValue in interface com.gs.collections.api.map.MapIterable<K,V>forEachValue in class AbstractMapIterable<K,V>public void forEachKey(com.gs.collections.api.block.procedure.Procedure<? super K> procedure)
com.gs.collections.api.map.MapIterableprocedure with each key of the map.
final Collection<Integer> result = new ArrayList<Integer>();
MutableMap<Integer, String> map = this.newMapWithKeysValues(1, "1", 2, "2", 3, "3");
map.forEachKey(new CollectionAddProcedure<Integer>(result));
Verify.assertContainsAll(result, 1, 2, 3);
forEachKey in interface com.gs.collections.api.map.MapIterable<K,V>forEachKey in class AbstractMapIterable<K,V>public void forEachKeyValue(com.gs.collections.api.block.procedure.Procedure2<? super K,? super V> procedure)
com.gs.collections.api.map.MapIterableprocedure with each key-value pair of the map.
final Collection<String> collection = new ArrayList<String>();
MutableMap<Integer, String> map = this.newMapWithKeysValues(1, "One", 2, "Two", 3, "Three");
map.forEachKeyValue(new Procedure2<Integer, String>()
{
public void value(final Integer key, final String value)
{
collection.add(String.valueOf(key) + value);
}
});
Verify.assertContainsAll(collection, "1One", "2Two", "3Three");
public V get(java.lang.Object key)
public <E> com.gs.collections.api.map.MutableMap<K,V> collectKeysAndValues(java.util.Collection<E> collection, com.gs.collections.api.block.function.Function<? super E,? extends K> keyFunction, com.gs.collections.api.block.function.Function<? super E,? extends V> valueFunction)
com.gs.collections.api.map.MutableMapcollection to this. The key and value for each entry
is determined by applying the keyFunction and valueFunction to each item in
collection. Any entry in map that has the same key as an entry in this
will have it's value replaced by that in map.public V removeKey(K key)
com.gs.collections.api.map.MutableMapkey.public boolean containsKey(java.lang.Object key)
public boolean containsValue(java.lang.Object value)
public V getIfAbsentPut(K key, com.gs.collections.api.block.function.Function0<? extends V> function)
com.gs.collections.api.map.MutableMapgetIfAbsentPut in interface com.gs.collections.api.map.MutableMap<K,V>getIfAbsentPut in class AbstractMutableMap<K,V>public <P> V getIfAbsentPutWith(K key, com.gs.collections.api.block.function.Function<? super P,? extends V> function, P parameter)
com.gs.collections.api.map.MutableMapgetIfAbsentPutWith in interface com.gs.collections.api.map.MutableMap<K,V>getIfAbsentPutWith in class AbstractMutableMap<K,V>public V getIfAbsent(K key, com.gs.collections.api.block.function.Function0<? extends V> function)
com.gs.collections.api.map.MapIterablegetIfAbsent in interface com.gs.collections.api.map.MapIterable<K,V>getIfAbsent in class AbstractMapIterable<K,V>public V getIfAbsentValue(K key, V value)
com.gs.collections.api.map.MapIterablevalue.getIfAbsentValue in interface com.gs.collections.api.map.MapIterable<K,V>getIfAbsentValue in class AbstractMapIterable<K,V>public <P> V getIfAbsentWith(K key, com.gs.collections.api.block.function.Function<? super P,? extends V> function, P parameter)
com.gs.collections.api.map.MapIterablegetIfAbsentWith in interface com.gs.collections.api.map.MapIterable<K,V>getIfAbsentWith in class AbstractMapIterable<K,V>public V getIfAbsentPut(K key, com.gs.collections.api.block.function.Function<? super K,? extends V> factory)
public <A> A ifPresentApply(K key, com.gs.collections.api.block.function.Function<? super V,? extends A> function)
com.gs.collections.api.map.MapIterableifPresentApply in interface com.gs.collections.api.map.MapIterable<K,V>ifPresentApply in class AbstractMapIterable<K,V>public boolean equals(java.lang.Object o)
com.gs.collections.api.map.MapIterableMap.equals(Object).public int hashCode()
com.gs.collections.api.map.MapIterableMap.hashCode().public <P> void forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super V,? super P> procedure, P parameter)
com.gs.collections.api.InternalIterablee.g. people.forEachWith(new Procedure2() { public void value(Person person, Person other) { if (person.isRelatedTo(other)) { LOGGER.info(person.getName()); } } }, fred);
forEachWith in interface com.gs.collections.api.InternalIterable<V>forEachWith in class AbstractMapIterable<K,V>public boolean remove(java.lang.Object key,
java.lang.Object value)
public V updateValue(K key, com.gs.collections.api.block.function.Function0<? extends V> factory, com.gs.collections.api.block.function.Function<? super V,? extends V> function)
com.gs.collections.api.map.MutableMapkey, applies the function to it, and replaces the value. If there
is no value associated with key, starts it off with a value supplied by factory.updateValue in interface com.gs.collections.api.map.MutableMap<K,V>updateValue in class AbstractMutableMap<K,V>public <P> V updateValueWith(K key, com.gs.collections.api.block.function.Function0<? extends V> factory, com.gs.collections.api.block.function.Function2<? super V,? super P,? extends V> function, P parameter)
com.gs.collections.api.map.MutableMapMutableMap.updateValue(Object, Function0, Function) with a Function2 and specified parameter which is
passed to the function.updateValueWith in interface com.gs.collections.api.map.MutableMap<K,V>updateValueWith in class AbstractMutableMap<K,V>public com.gs.collections.api.map.ImmutableMap<K,V> toImmutable()
com.gs.collections.api.map.MutableMaptoImmutable in interface com.gs.collections.api.map.MutableMap<K,V>toImmutable in class AbstractMutableMap<K,V>