public final class UnmodifiableCharBooleanMap extends Object implements MutableCharBooleanMap, Serializable
Modifier and Type | Method and Description |
---|---|
boolean |
allSatisfy(BooleanPredicate predicate) |
boolean |
anySatisfy(BooleanPredicate predicate) |
void |
appendString(Appendable appendable)
Prints a string representation of this collection onto the given
Appendable . |
void |
appendString(Appendable appendable,
String separator)
Prints a string representation of this collection onto the given
Appendable . |
void |
appendString(Appendable appendable,
String start,
String separator,
String end)
Prints a string representation of this collection onto the given
Appendable . |
LazyBooleanIterable |
asLazy() |
MutableCharBooleanMap |
asSynchronized() |
MutableCharBooleanMap |
asUnmodifiable() |
MutableBooleanIterator |
booleanIterator() |
void |
clear() |
<V> MutableCollection<V> |
collect(BooleanToObjectFunction<? extends V> function) |
boolean |
contains(boolean value) |
boolean |
containsAll(boolean... source) |
boolean |
containsAll(BooleanIterable source) |
boolean |
containsKey(char key) |
boolean |
containsValue(boolean value) |
int |
count(BooleanPredicate predicate) |
boolean |
detectIfNone(BooleanPredicate predicate,
boolean ifNone) |
void |
each(BooleanProcedure procedure) |
boolean |
equals(Object otherMap)
Follows the same general contract as
Map.equals(Object) . |
void |
forEach(BooleanProcedure procedure) |
void |
forEachKey(CharProcedure procedure) |
void |
forEachKeyValue(CharBooleanProcedure procedure) |
void |
forEachValue(BooleanProcedure procedure) |
boolean |
get(char key) |
boolean |
getIfAbsent(char key,
boolean ifAbsent) |
boolean |
getIfAbsentPut(char key,
boolean value) |
boolean |
getIfAbsentPut(char key,
BooleanFunction0 function) |
<P> boolean |
getIfAbsentPutWith(char key,
BooleanFunction<? super P> function,
P parameter) |
boolean |
getIfAbsentPutWithKey(char key,
CharToBooleanFunction function) |
boolean |
getOrThrow(char key) |
int |
hashCode()
Follows the same general contract as
Map.hashCode() . |
<T> T |
injectInto(T injectedValue,
ObjectBooleanToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty()
Returns true if this iterable has zero items.
|
MutableCharSet |
keySet() |
LazyCharIterable |
keysView() |
RichIterable<CharBooleanPair> |
keyValuesView() |
String |
makeString()
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space). |
String |
makeString(String separator)
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String). |
String |
makeString(String start,
String separator,
String end)
Returns a string representation of this collection.
|
boolean |
noneSatisfy(BooleanPredicate predicate) |
boolean |
notEmpty()
The English equivalent of !this.isEmpty()
|
void |
put(char key,
boolean value) |
void |
putAll(CharBooleanMap map) |
MutableBooleanCollection |
reject(BooleanPredicate predicate) |
MutableCharBooleanMap |
reject(CharBooleanPredicate predicate) |
void |
remove(char key) |
void |
removeKey(char key) |
boolean |
removeKeyIfAbsent(char key,
boolean value) |
MutableBooleanCollection |
select(BooleanPredicate predicate) |
MutableCharBooleanMap |
select(CharBooleanPredicate predicate) |
int |
size()
Returns the number of items in this iterable.
|
boolean[] |
toArray() |
MutableBooleanBag |
toBag() |
ImmutableCharBooleanMap |
toImmutable() |
MutableBooleanList |
toList() |
MutableBooleanSet |
toSet() |
String |
toString()
Returns a string representation of this CharBooleanMap.
|
boolean |
updateValue(char key,
boolean initialValueIfAbsent,
BooleanToBooleanFunction function) |
MutableBooleanCollection |
values() |
MutableCharBooleanMap |
withKeyValue(char key,
boolean value) |
MutableCharBooleanMap |
withoutAllKeys(CharIterable keys) |
MutableCharBooleanMap |
withoutKey(char key) |
public void clear()
clear
in interface MutableBooleanValuesMap
public void put(char key, boolean value)
put
in interface MutableCharBooleanMap
public void putAll(CharBooleanMap map)
putAll
in interface MutableCharBooleanMap
public void removeKey(char key)
removeKey
in interface MutableCharBooleanMap
public void remove(char key)
remove
in interface MutableCharBooleanMap
public boolean removeKeyIfAbsent(char key, boolean value)
removeKeyIfAbsent
in interface MutableCharBooleanMap
public boolean getIfAbsentPut(char key, boolean value)
getIfAbsentPut
in interface MutableCharBooleanMap
public boolean getIfAbsentPut(char key, BooleanFunction0 function)
getIfAbsentPut
in interface MutableCharBooleanMap
public boolean getIfAbsentPutWithKey(char key, CharToBooleanFunction function)
getIfAbsentPutWithKey
in interface MutableCharBooleanMap
public <P> boolean getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)
getIfAbsentPutWith
in interface MutableCharBooleanMap
public boolean updateValue(char key, boolean initialValueIfAbsent, BooleanToBooleanFunction function)
updateValue
in interface MutableCharBooleanMap
public boolean get(char key)
get
in interface CharBooleanMap
public boolean getIfAbsent(char key, boolean ifAbsent)
getIfAbsent
in interface CharBooleanMap
public boolean getOrThrow(char key)
getOrThrow
in interface CharBooleanMap
public boolean containsKey(char key)
containsKey
in interface CharBooleanMap
public boolean containsValue(boolean value)
containsValue
in interface BooleanValuesMap
public void forEachValue(BooleanProcedure procedure)
forEachValue
in interface BooleanValuesMap
public void forEachKey(CharProcedure procedure)
forEachKey
in interface CharBooleanMap
public void forEachKeyValue(CharBooleanProcedure procedure)
forEachKeyValue
in interface CharBooleanMap
public LazyCharIterable keysView()
keysView
in interface CharBooleanMap
public RichIterable<CharBooleanPair> keyValuesView()
keyValuesView
in interface CharBooleanMap
public MutableCharBooleanMap select(CharBooleanPredicate predicate)
select
in interface CharBooleanMap
select
in interface MutableCharBooleanMap
public MutableCharBooleanMap reject(CharBooleanPredicate predicate)
reject
in interface CharBooleanMap
reject
in interface MutableCharBooleanMap
public MutableBooleanIterator booleanIterator()
booleanIterator
in interface BooleanIterable
booleanIterator
in interface MutableBooleanValuesMap
public void forEach(BooleanProcedure procedure)
forEach
in interface BooleanIterable
public void each(BooleanProcedure procedure)
each
in interface BooleanIterable
public int count(BooleanPredicate predicate)
count
in interface BooleanIterable
public boolean anySatisfy(BooleanPredicate predicate)
anySatisfy
in interface BooleanIterable
public boolean allSatisfy(BooleanPredicate predicate)
allSatisfy
in interface BooleanIterable
public boolean noneSatisfy(BooleanPredicate predicate)
noneSatisfy
in interface BooleanIterable
public MutableBooleanCollection select(BooleanPredicate predicate)
select
in interface BooleanIterable
select
in interface MutableBooleanValuesMap
public MutableBooleanCollection reject(BooleanPredicate predicate)
reject
in interface BooleanIterable
reject
in interface MutableBooleanValuesMap
public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone)
detectIfNone
in interface BooleanIterable
public <V> MutableCollection<V> collect(BooleanToObjectFunction<? extends V> function)
collect
in interface BooleanIterable
collect
in interface MutableBooleanValuesMap
public boolean[] toArray()
toArray
in interface BooleanIterable
public boolean contains(boolean value)
contains
in interface BooleanIterable
public boolean containsAll(boolean... source)
containsAll
in interface BooleanIterable
public boolean containsAll(BooleanIterable source)
containsAll
in interface BooleanIterable
public MutableBooleanList toList()
toList
in interface BooleanIterable
public MutableBooleanSet toSet()
toSet
in interface BooleanIterable
public MutableBooleanBag toBag()
toBag
in interface BooleanIterable
public LazyBooleanIterable asLazy()
asLazy
in interface BooleanIterable
public MutableCharBooleanMap withKeyValue(char key, boolean value)
withKeyValue
in interface MutableCharBooleanMap
public MutableCharBooleanMap withoutKey(char key)
withoutKey
in interface MutableCharBooleanMap
public MutableCharBooleanMap withoutAllKeys(CharIterable keys)
withoutAllKeys
in interface MutableCharBooleanMap
public MutableCharBooleanMap asUnmodifiable()
asUnmodifiable
in interface MutableCharBooleanMap
public MutableCharBooleanMap asSynchronized()
asSynchronized
in interface MutableCharBooleanMap
public ImmutableCharBooleanMap toImmutable()
toImmutable
in interface CharBooleanMap
public int size()
PrimitiveIterable
size
in interface PrimitiveIterable
public boolean isEmpty()
PrimitiveIterable
isEmpty
in interface PrimitiveIterable
public boolean notEmpty()
PrimitiveIterable
notEmpty
in interface PrimitiveIterable
public MutableCharSet keySet()
keySet
in interface CharBooleanMap
public MutableBooleanCollection values()
values
in interface BooleanValuesMap
public boolean equals(Object otherMap)
CharBooleanMap
Map.equals(Object)
.equals
in interface CharBooleanMap
equals
in class Object
public int hashCode()
CharBooleanMap
Map.hashCode()
.hashCode
in interface CharBooleanMap
hashCode
in class Object
public String toString()
CharBooleanMap
toString
in interface CharBooleanMap
toString
in interface PrimitiveIterable
toString
in class Object
public String makeString()
PrimitiveIterable
PrimitiveIterable.makeString(String)
and defaulting
the separator parameter to the characters ", " (comma and space).makeString
in interface PrimitiveIterable
public String makeString(String separator)
PrimitiveIterable
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString
in interface PrimitiveIterable
public String makeString(String start, String separator, String end)
PrimitiveIterable
makeString
in interface PrimitiveIterable
public void appendString(Appendable appendable)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString()
.appendString
in interface PrimitiveIterable
public void appendString(Appendable appendable, String separator)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String)
.appendString
in interface PrimitiveIterable
public void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String, String, String)
.appendString
in interface PrimitiveIterable
public <T> T injectInto(T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)
injectInto
in interface BooleanIterable
Copyright © 2004–2016. All rights reserved.