public interface IntBooleanMap extends BooleanIterable
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(int key) |
boolean |
containsValue(boolean value) |
boolean |
equals(Object o)
Follows the same general contract as
Map.equals(Object) . |
void |
forEachKey(IntProcedure procedure) |
void |
forEachKeyValue(IntBooleanProcedure procedure) |
void |
forEachValue(BooleanProcedure procedure) |
boolean |
get(int key) |
boolean |
getIfAbsent(int key,
boolean ifAbsent) |
boolean |
getOrThrow(int key) |
int |
hashCode()
Follows the same general contract as
Map.hashCode() . |
MutableIntSet |
keySet() |
LazyIntIterable |
keysView() |
RichIterable<IntBooleanPair> |
keyValuesView() |
IntBooleanMap |
reject(IntBooleanPredicate predicate) |
IntBooleanMap |
select(IntBooleanPredicate predicate) |
ImmutableIntBooleanMap |
toImmutable() |
String |
toString()
Returns a string representation of this IntBooleanMap.
|
MutableBooleanCollection |
values() |
allSatisfy, anySatisfy, asLazy, booleanIterator, collect, contains, containsAll, containsAll, count, detectIfNone, forEach, injectInto, noneSatisfy, reject, select, toArray, toBag, toList, toSet
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
boolean get(int key)
boolean getIfAbsent(int key, boolean ifAbsent)
boolean getOrThrow(int key)
boolean containsKey(int key)
boolean containsValue(boolean value)
void forEachValue(BooleanProcedure procedure)
void forEachKey(IntProcedure procedure)
void forEachKeyValue(IntBooleanProcedure procedure)
LazyIntIterable keysView()
RichIterable<IntBooleanPair> keyValuesView()
IntBooleanMap select(IntBooleanPredicate predicate)
IntBooleanMap reject(IntBooleanPredicate predicate)
boolean equals(Object o)
Map.equals(Object)
.int hashCode()
Map.hashCode()
.String toString()
toString
in interface PrimitiveIterable
toString
in class Object
ImmutableIntBooleanMap toImmutable()
MutableIntSet keySet()
MutableBooleanCollection values()
Copyright © 2004–2019. All rights reserved.