IntIterable, IntValuesMap, LongIntMap, MutableIntValuesMap, PrimitiveIterableLongIntHashMap, SynchronizedLongIntMap, UnmodifiableLongIntMappublic interface MutableLongIntMap extends LongIntMap, MutableIntValuesMap
| Modifier and Type | Method | Description | 
|---|---|---|
| int | addToValue(long key,
          int toBeAdded) | |
| MutableLongIntMap | asSynchronized() | |
| MutableLongIntMap | asUnmodifiable() | |
| int | getIfAbsentPut(long key,
              int value) | |
| int | getIfAbsentPut(long key,
              IntFunction0 function) | |
| <P> int | getIfAbsentPutWith(long key,
                  IntFunction<? super P> function,
                  P parameter) | |
| int | getIfAbsentPutWithKey(long key,
                     LongToIntFunction function) | |
| void | put(long key,
   int value) | |
| void | putAll(LongIntMap map) | |
| MutableLongIntMap | reject(LongIntPredicate predicate) | |
| void | remove(long key) | |
| void | removeKey(long key) | |
| int | removeKeyIfAbsent(long key,
                 int value) | |
| MutableLongIntMap | select(LongIntPredicate predicate) | |
| int | updateValue(long key,
           int initialValueIfAbsent,
           IntToIntFunction function) | |
| MutableLongIntMap | withKeyValue(long key,
            int value) | |
| MutableLongIntMap | withoutAllKeys(LongIterable keys) | |
| MutableLongIntMap | withoutKey(long key) | 
allSatisfy, anySatisfy, asLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListcontainsValue, forEachValue, valuescontainsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toStringclear, collect, intIterator, reject, selectappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizevoid put(long key,
         int value)
void putAll(LongIntMap map)
void removeKey(long key)
void remove(long key)
int removeKeyIfAbsent(long key,
                      int value)
int getIfAbsentPut(long key,
                   int value)
int getIfAbsentPut(long key,
                   IntFunction0 function)
int getIfAbsentPutWithKey(long key,
                          LongToIntFunction function)
<P> int getIfAbsentPutWith(long key,
                           IntFunction<? super P> function,
                           P parameter)
int updateValue(long key,
                int initialValueIfAbsent,
                IntToIntFunction function)
MutableLongIntMap select(LongIntPredicate predicate)
select in interface LongIntMapMutableLongIntMap reject(LongIntPredicate predicate)
reject in interface LongIntMapMutableLongIntMap withKeyValue(long key, int value)
MutableLongIntMap withoutKey(long key)
MutableLongIntMap withoutAllKeys(LongIterable keys)
MutableLongIntMap asUnmodifiable()
MutableLongIntMap asSynchronized()
int addToValue(long key,
               int toBeAdded)
Copyright © 2004–2017. All rights reserved.