public class CharBooleanHashMap extends Object implements MutableCharBooleanMap, Externalizable
Constructor and Description |
---|
CharBooleanHashMap() |
CharBooleanHashMap(CharBooleanMap map) |
CharBooleanHashMap(int initialCapacity) |
CharBooleanHashMap(int initialCapacity,
float loadFactor)
Deprecated.
in 5.1.0.
|
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() |
BooleanIterator |
booleanIterator() |
void |
clear() |
<V> MutableCollection<V> |
collect(BooleanToObjectFunction<? extends V> function) |
void |
compact()
Rehashes every element in the set into a new backing table of the smallest possible size and eliminating removed sentinels.
|
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 value) |
boolean |
equals(Object obj)
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() . |
<V> V |
injectInto(V injectedValue,
ObjectBooleanToObjectFunction<? super V,? extends V> 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.
|
static CharBooleanHashMap |
newWithKeysValues(char key1,
boolean value1) |
static CharBooleanHashMap |
newWithKeysValues(char key1,
boolean value1,
char key2,
boolean value2) |
static CharBooleanHashMap |
newWithKeysValues(char key1,
boolean value1,
char key2,
boolean value2,
char key3,
boolean value3) |
static CharBooleanHashMap |
newWithKeysValues(char key1,
boolean value1,
char key2,
boolean value2,
char key3,
boolean value3,
char key4,
boolean value4) |
boolean |
noneSatisfy(BooleanPredicate predicate) |
boolean |
notEmpty()
The English equivalent of !this.isEmpty()
|
void |
put(char key,
boolean value) |
void |
putAll(CharBooleanMap map) |
void |
readExternal(ObjectInput in) |
MutableBooleanCollection |
reject(BooleanPredicate predicate) |
CharBooleanHashMap |
reject(CharBooleanPredicate predicate) |
void |
remove(char key) |
void |
removeKey(char key) |
boolean |
removeKeyIfAbsent(char key,
boolean value) |
MutableBooleanCollection |
select(BooleanPredicate predicate) |
CharBooleanHashMap |
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() |
CharBooleanHashMap |
withKeysValues(char key1,
boolean value1,
char key2,
boolean value2) |
CharBooleanHashMap |
withKeysValues(char key1,
boolean value1,
char key2,
boolean value2,
char key3,
boolean value3) |
CharBooleanHashMap |
withKeysValues(char key1,
boolean value1,
char key2,
boolean value2,
char key3,
boolean value3,
char key4,
boolean value4) |
CharBooleanHashMap |
withKeyValue(char key1,
boolean value1) |
CharBooleanHashMap |
withoutAllKeys(CharIterable keys) |
CharBooleanHashMap |
withoutKey(char key) |
void |
writeExternal(ObjectOutput out) |
public CharBooleanHashMap()
public CharBooleanHashMap(int initialCapacity)
public CharBooleanHashMap(CharBooleanMap map)
@Deprecated public CharBooleanHashMap(int initialCapacity, float loadFactor)
public MutableCharBooleanMap asUnmodifiable()
asUnmodifiable
in interface MutableCharBooleanMap
public MutableCharBooleanMap asSynchronized()
asSynchronized
in interface MutableCharBooleanMap
public ImmutableCharBooleanMap toImmutable()
toImmutable
in interface CharBooleanMap
public static CharBooleanHashMap newWithKeysValues(char key1, boolean value1)
public static CharBooleanHashMap newWithKeysValues(char key1, boolean value1, char key2, boolean value2)
public static CharBooleanHashMap newWithKeysValues(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3)
public static CharBooleanHashMap newWithKeysValues(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4)
public CharBooleanHashMap withKeyValue(char key1, boolean value1)
withKeyValue
in interface MutableCharBooleanMap
public CharBooleanHashMap withKeysValues(char key1, boolean value1, char key2, boolean value2)
public CharBooleanHashMap withKeysValues(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3)
public CharBooleanHashMap withKeysValues(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4)
public CharBooleanHashMap withoutKey(char key)
withoutKey
in interface MutableCharBooleanMap
public CharBooleanHashMap withoutAllKeys(CharIterable keys)
withoutAllKeys
in interface MutableCharBooleanMap
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 void compact()
public void clear()
clear
in interface MutableCharBooleanMap
public void put(char key, boolean value)
put
in interface MutableCharBooleanMap
public void putAll(CharBooleanMap map)
putAll
in interface MutableCharBooleanMap
public boolean containsKey(char key)
containsKey
in interface CharBooleanMap
public boolean containsValue(boolean value)
containsValue
in interface CharBooleanMap
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 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 getIfAbsentPut(char key, boolean value)
getIfAbsentPut
in interface MutableCharBooleanMap
public boolean getIfAbsentPut(char key, BooleanFunction0 function)
getIfAbsentPut
in interface MutableCharBooleanMap
public <P> boolean getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)
getIfAbsentPutWith
in interface MutableCharBooleanMap
public boolean getIfAbsentPutWithKey(char key, CharToBooleanFunction function)
getIfAbsentPutWithKey
in interface MutableCharBooleanMap
public boolean updateValue(char key, boolean initialValueIfAbsent, BooleanToBooleanFunction function)
updateValue
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 equals(Object obj)
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 BooleanIterator booleanIterator()
booleanIterator
in interface BooleanIterable
public void forEach(BooleanProcedure procedure)
forEach
in interface BooleanIterable
public void forEachValue(BooleanProcedure procedure)
forEachValue
in interface CharBooleanMap
public void forEachKey(CharProcedure procedure)
forEachKey
in interface CharBooleanMap
public void forEachKeyValue(CharBooleanProcedure procedure)
forEachKeyValue
in interface CharBooleanMap
public CharBooleanHashMap select(CharBooleanPredicate predicate)
select
in interface CharBooleanMap
select
in interface MutableCharBooleanMap
public CharBooleanHashMap reject(CharBooleanPredicate predicate)
reject
in interface CharBooleanMap
reject
in interface MutableCharBooleanMap
public <V> V injectInto(V injectedValue, ObjectBooleanToObjectFunction<? super V,? extends V> function)
injectInto
in interface BooleanIterable
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 MutableBooleanCollection select(BooleanPredicate predicate)
select
in interface BooleanIterable
select
in interface MutableCharBooleanMap
public MutableBooleanCollection reject(BooleanPredicate predicate)
reject
in interface BooleanIterable
reject
in interface MutableCharBooleanMap
public boolean detectIfNone(BooleanPredicate predicate, boolean value)
detectIfNone
in interface BooleanIterable
public <V> MutableCollection<V> collect(BooleanToObjectFunction<? extends V> function)
collect
in interface BooleanIterable
collect
in interface MutableCharBooleanMap
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 boolean[] toArray()
toArray
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 LazyCharIterable keysView()
keysView
in interface CharBooleanMap
public RichIterable<CharBooleanPair> keyValuesView()
keyValuesView
in interface CharBooleanMap
public void writeExternal(ObjectOutput out) throws IOException
writeExternal
in interface Externalizable
IOException
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal
in interface Externalizable
IOException
ClassNotFoundException
public MutableCharSet keySet()
keySet
in interface CharBooleanMap
public MutableBooleanCollection values()
values
in interface CharBooleanMap
Copyright © 2004–2018. All rights reserved.