InternalIterable<V>
, Iterable<V>
, LongObjectMap<V>
, MutablePrimitiveObjectMap<V>
, PrimitiveObjectMap<V>
, RichIterable<V>
LongObjectHashMap
, SynchronizedLongObjectMap
, UnmodifiableLongObjectMap
public interface MutableLongObjectMap<V> extends LongObjectMap<V>, MutablePrimitiveObjectMap<V>
Modifier and Type | Method | Description |
---|---|---|
MutableLongObjectMap<V> |
asSynchronized() |
|
MutableLongObjectMap<V> |
asUnmodifiable() |
|
V |
getIfAbsentPut(long key,
Function0<? extends V> function) |
|
V |
getIfAbsentPut(long key,
V value) |
|
<P> V |
getIfAbsentPutWith(long key,
Function<? super P,? extends V> function,
P parameter) |
|
V |
getIfAbsentPutWithKey(long key,
LongToObjectFunction<? extends V> function) |
|
V |
put(long key,
V value) |
|
void |
putAll(LongObjectMap<? extends V> map) |
|
MutableLongObjectMap<V> |
reject(LongObjectPredicate<? super V> predicate) |
|
V |
remove(long key) |
|
V |
removeKey(long key) |
|
MutableLongObjectMap<V> |
select(LongObjectPredicate<? super V> predicate) |
|
MutableLongObjectMap<V> |
tap(Procedure<? super V> procedure) |
Executes the Procedure for each element in the iterable and returns
this . |
V |
updateValue(long key,
Function0<? extends V> factory,
Function<? super V,? extends V> function) |
Look up the value associated with
key , apply the function to it, and replace the value. |
<P> V |
updateValueWith(long key,
Function0<? extends V> factory,
Function2<? super V,? super P,? extends V> function,
P parameter) |
Same as
updateValue(long, Function0, Function) with a Function2 and specified parameter which is
passed to the function. |
MutableLongObjectMap<V> |
withKeyValue(long key,
V value) |
|
MutableLongObjectMap<V> |
withoutAllKeys(LongIterable keys) |
|
MutableLongObjectMap<V> |
withoutKey(long key) |
forEach, forEachWith, forEachWithIndex
forEach, iterator, spliterator
containsKey, forEachKey, forEachKeyValue, get, getIfAbsent, keySet, keysView, keyValuesView, toImmutable
aggregateBy, aggregateInPlaceBy, clear, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, flatCollect, groupBy, groupByEach, groupByUniqueKey, partition, partitionWith, reject, rejectWith, select, selectInstancesOf, selectWith, sumByDouble, sumByFloat, sumByInt, sumByLong, zip, zipWithIndex
containsValue, equals, forEachValue, hashCode, toString, values
allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectOptional, detectWith, detectWithIfNone, detectWithOptional, each, flatCollect, getFirst, getLast, getOnly, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, into, isEmpty, makeString, makeString, makeString, max, max, maxBy, maxByOptional, maxOptional, maxOptional, min, min, minBy, minByOptional, minOptional, minOptional, noneSatisfy, noneSatisfyWith, notEmpty, reduce, reduceInPlace, reduceInPlace, reject, rejectWith, select, selectWith, size, summarizeDouble, summarizeFloat, summarizeInt, summarizeLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, zip, zipWithIndex
void putAll(LongObjectMap<? extends V> map)
V removeKey(long key)
V remove(long key)
V getIfAbsentPutWithKey(long key, LongToObjectFunction<? extends V> function)
<P> V getIfAbsentPutWith(long key, Function<? super P,? extends V> function, P parameter)
V updateValue(long key, Function0<? extends V> factory, Function<? super V,? extends V> function)
key
, apply the function
to it, and replace the value. If there
is no value associated with key
, start it off with a value supplied by factory
.<P> V updateValueWith(long key, Function0<? extends V> factory, Function2<? super V,? super P,? extends V> function, P parameter)
updateValue(long, Function0, Function)
with a Function2 and specified parameter which is
passed to the function.MutableLongObjectMap<V> tap(Procedure<? super V> procedure)
RichIterable
this
.
Example using a Java 8 lambda expression:
RichIterable<Person> tapped = people.tap(person -> LOGGER.info(person.getName()));
Example using an anonymous inner class:
RichIterable<Person> tapped = people.tap(new Procedure<Person>() { public void value(Person person) { LOGGER.info(person.getName()); } });
tap
in interface LongObjectMap<V>
tap
in interface RichIterable<V>
RichIterable.each(Procedure)
,
InternalIterable.forEach(Procedure)
MutableLongObjectMap<V> select(LongObjectPredicate<? super V> predicate)
select
in interface LongObjectMap<V>
MutableLongObjectMap<V> reject(LongObjectPredicate<? super V> predicate)
reject
in interface LongObjectMap<V>
MutableLongObjectMap<V> withKeyValue(long key, V value)
MutableLongObjectMap<V> withoutKey(long key)
MutableLongObjectMap<V> withoutAllKeys(LongIterable keys)
MutableLongObjectMap<V> asUnmodifiable()
MutableLongObjectMap<V> asSynchronized()
Copyright © 2004–2017. All rights reserved.