public interface ObjectCharMap<K> extends CharIterable
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(Object key) |
boolean |
containsValue(char value) |
void |
forEachKey(Procedure<? super K> procedure) |
void |
forEachKeyValue(ObjectCharProcedure<? super K> procedure) |
void |
forEachValue(CharProcedure procedure) |
char |
get(Object key) |
char |
getIfAbsent(Object key,
char ifAbsent) |
char |
getOrThrow(Object key) |
Set<K> |
keySet() |
LazyIterable<K> |
keysView() |
RichIterable<ObjectCharPair<K>> |
keyValuesView() |
ObjectCharMap<K> |
reject(ObjectCharPredicate<? super K> predicate) |
ObjectCharMap<K> |
select(ObjectCharPredicate<? super K> predicate) |
ImmutableObjectCharMap<K> |
toImmutable() |
String |
toString()
Returns a string representation of this ObjectCharMap.
|
MutableCharCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, charIterator, collect, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
char get(Object key)
char getOrThrow(Object key)
char getIfAbsent(Object key, char ifAbsent)
boolean containsKey(Object key)
boolean containsValue(char value)
void forEachValue(CharProcedure procedure)
void forEachKeyValue(ObjectCharProcedure<? super K> procedure)
ObjectCharMap<K> select(ObjectCharPredicate<? super K> predicate)
ObjectCharMap<K> reject(ObjectCharPredicate<? super K> predicate)
String toString()
toString
in interface PrimitiveIterable
toString
in class Object
ImmutableObjectCharMap<K> toImmutable()
MutableCharCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectCharPair<K>> keyValuesView()
Copyright © 2004–2016. All rights reserved.