public final class SynchronizedDoubleCharMap extends Object implements org.eclipse.collections.api.map.primitive.MutableDoubleCharMap, Serializable
MutableDoubleCharMap. It is imperative that the user manually synchronize on the collection when iterating over it using the
MutableCharIterator as per Collections.synchronizedCollection(Collection).
This file was automatically generated from template file synchronizedPrimitivePrimitiveMap.stg.
MutableDoubleCharMap.asSynchronized(),
MutableMap.asSynchronized(),
Serialized Form| Modifier and Type | Method and Description |
|---|---|
char |
addToValue(double key,
char toBeAdded) |
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
void |
appendString(Appendable appendable) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
org.eclipse.collections.api.LazyCharIterable |
asLazy() |
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap |
asSynchronized() |
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap |
asUnmodifiable() |
double |
average() |
org.eclipse.collections.api.iterator.MutableCharIterator |
charIterator()
This must be manually synchronized by the developer.
|
void |
clear() |
<V> org.eclipse.collections.api.collection.MutableCollection<V> |
collect(org.eclipse.collections.api.block.function.primitive.CharToObjectFunction<? extends V> function) |
boolean |
contains(char value) |
boolean |
containsAll(char... source) |
boolean |
containsAll(org.eclipse.collections.api.CharIterable source) |
boolean |
containsKey(double key) |
boolean |
containsValue(char value) |
int |
count(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
char |
detectIfNone(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate,
char ifNone) |
void |
each(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure) |
boolean |
equals(Object otherMap) |
void |
forEach(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure) |
void |
forEachKey(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure) |
void |
forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.DoubleCharProcedure procedure) |
void |
forEachValue(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure) |
char |
get(double key) |
char |
getIfAbsent(double key,
char ifAbsent) |
char |
getIfAbsentPut(double key,
char value) |
char |
getIfAbsentPut(double key,
org.eclipse.collections.api.block.function.primitive.CharFunction0 function) |
<P> char |
getIfAbsentPutWith(double key,
org.eclipse.collections.api.block.function.primitive.CharFunction<? super P> function,
P parameter) |
char |
getIfAbsentPutWithKey(double key,
org.eclipse.collections.api.block.function.primitive.DoubleToCharFunction function) |
char |
getOrThrow(double key) |
int |
hashCode() |
<T> T |
injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty() |
org.eclipse.collections.api.set.primitive.MutableDoubleSet |
keySet() |
org.eclipse.collections.api.LazyDoubleIterable |
keysView() |
org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.DoubleCharPair> |
keyValuesView() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
char |
max() |
char |
maxIfEmpty(char defaultValue) |
double |
median() |
char |
min() |
char |
minIfEmpty(char defaultValue) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
boolean |
notEmpty() |
void |
put(double key,
char value) |
void |
putAll(org.eclipse.collections.api.map.primitive.DoubleCharMap map) |
org.eclipse.collections.api.collection.primitive.MutableCharCollection |
reject(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap |
reject(org.eclipse.collections.api.block.predicate.primitive.DoubleCharPredicate predicate) |
void |
remove(double key) |
void |
removeKey(double key) |
char |
removeKeyIfAbsent(double key,
char value) |
org.eclipse.collections.api.collection.primitive.MutableCharCollection |
select(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap |
select(org.eclipse.collections.api.block.predicate.primitive.DoubleCharPredicate predicate) |
int |
size() |
long |
sum() |
char[] |
toArray() |
org.eclipse.collections.api.bag.primitive.MutableCharBag |
toBag() |
org.eclipse.collections.api.map.primitive.ImmutableDoubleCharMap |
toImmutable() |
org.eclipse.collections.api.list.primitive.MutableCharList |
toList() |
org.eclipse.collections.api.set.primitive.MutableCharSet |
toSet() |
char[] |
toSortedArray() |
org.eclipse.collections.api.list.primitive.MutableCharList |
toSortedList() |
String |
toString() |
char |
updateValue(double key,
char initialValueIfAbsent,
org.eclipse.collections.api.block.function.primitive.CharToCharFunction function) |
org.eclipse.collections.api.collection.primitive.MutableCharCollection |
values() |
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap |
withKeyValue(double key,
char value) |
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap |
withoutAllKeys(org.eclipse.collections.api.DoubleIterable keys) |
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap |
withoutKey(double key) |
public void clear()
clear in interface org.eclipse.collections.api.map.primitive.MutableCharValuesMappublic void put(double key,
char value)
put in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic void putAll(org.eclipse.collections.api.map.primitive.DoubleCharMap map)
putAll in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic void removeKey(double key)
removeKey in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic void remove(double key)
remove in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic char removeKeyIfAbsent(double key,
char value)
removeKeyIfAbsent in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic char getIfAbsentPut(double key,
char value)
getIfAbsentPut in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic char getIfAbsentPut(double key,
org.eclipse.collections.api.block.function.primitive.CharFunction0 function)
getIfAbsentPut in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic char getIfAbsentPutWithKey(double key,
org.eclipse.collections.api.block.function.primitive.DoubleToCharFunction function)
getIfAbsentPutWithKey in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic <P> char getIfAbsentPutWith(double key,
org.eclipse.collections.api.block.function.primitive.CharFunction<? super P> function,
P parameter)
getIfAbsentPutWith in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic char updateValue(double key,
char initialValueIfAbsent,
org.eclipse.collections.api.block.function.primitive.CharToCharFunction function)
updateValue in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic char get(double key)
get in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic char getIfAbsent(double key,
char ifAbsent)
getIfAbsent in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic char getOrThrow(double key)
getOrThrow in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic boolean containsKey(double key)
containsKey in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic boolean containsValue(char value)
containsValue in interface org.eclipse.collections.api.map.primitive.CharValuesMappublic void forEachValue(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure)
forEachValue in interface org.eclipse.collections.api.map.primitive.CharValuesMappublic void forEachKey(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure)
forEachKey in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic void forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.DoubleCharProcedure procedure)
forEachKeyValue in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic org.eclipse.collections.api.LazyDoubleIterable keysView()
keysView in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.DoubleCharPair> keyValuesView()
keyValuesView in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic org.eclipse.collections.api.map.primitive.MutableDoubleCharMap select(org.eclipse.collections.api.block.predicate.primitive.DoubleCharPredicate predicate)
select in interface org.eclipse.collections.api.map.primitive.DoubleCharMapselect in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic org.eclipse.collections.api.map.primitive.MutableDoubleCharMap reject(org.eclipse.collections.api.block.predicate.primitive.DoubleCharPredicate predicate)
reject in interface org.eclipse.collections.api.map.primitive.DoubleCharMapreject in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic org.eclipse.collections.api.iterator.MutableCharIterator charIterator()
charIterator in interface org.eclipse.collections.api.CharIterablecharIterator in interface org.eclipse.collections.api.map.primitive.MutableCharValuesMappublic void forEach(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure)
forEach in interface org.eclipse.collections.api.CharIterablepublic void each(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure)
each in interface org.eclipse.collections.api.CharIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
count in interface org.eclipse.collections.api.CharIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
anySatisfy in interface org.eclipse.collections.api.CharIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
allSatisfy in interface org.eclipse.collections.api.CharIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.CharIterablepublic org.eclipse.collections.api.collection.primitive.MutableCharCollection select(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
select in interface org.eclipse.collections.api.CharIterableselect in interface org.eclipse.collections.api.map.primitive.MutableCharValuesMappublic org.eclipse.collections.api.collection.primitive.MutableCharCollection reject(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
reject in interface org.eclipse.collections.api.CharIterablereject in interface org.eclipse.collections.api.map.primitive.MutableCharValuesMappublic char detectIfNone(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate,
char ifNone)
detectIfNone in interface org.eclipse.collections.api.CharIterablepublic <V> org.eclipse.collections.api.collection.MutableCollection<V> collect(org.eclipse.collections.api.block.function.primitive.CharToObjectFunction<? extends V> function)
collect in interface org.eclipse.collections.api.CharIterablecollect in interface org.eclipse.collections.api.map.primitive.MutableCharValuesMappublic long sum()
sum in interface org.eclipse.collections.api.CharIterablepublic char max()
max in interface org.eclipse.collections.api.CharIterablepublic char maxIfEmpty(char defaultValue)
maxIfEmpty in interface org.eclipse.collections.api.CharIterablepublic char min()
min in interface org.eclipse.collections.api.CharIterablepublic char minIfEmpty(char defaultValue)
minIfEmpty in interface org.eclipse.collections.api.CharIterablepublic double average()
average in interface org.eclipse.collections.api.CharIterablepublic double median()
median in interface org.eclipse.collections.api.CharIterablepublic char addToValue(double key,
char toBeAdded)
addToValue in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic char[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.CharIterablepublic org.eclipse.collections.api.list.primitive.MutableCharList toSortedList()
toSortedList in interface org.eclipse.collections.api.CharIterablepublic char[] toArray()
toArray in interface org.eclipse.collections.api.CharIterablepublic boolean contains(char value)
contains in interface org.eclipse.collections.api.CharIterablepublic boolean containsAll(char... source)
containsAll in interface org.eclipse.collections.api.CharIterablepublic boolean containsAll(org.eclipse.collections.api.CharIterable source)
containsAll in interface org.eclipse.collections.api.CharIterablepublic org.eclipse.collections.api.list.primitive.MutableCharList toList()
toList in interface org.eclipse.collections.api.CharIterablepublic org.eclipse.collections.api.set.primitive.MutableCharSet toSet()
toSet in interface org.eclipse.collections.api.CharIterablepublic org.eclipse.collections.api.bag.primitive.MutableCharBag toBag()
toBag in interface org.eclipse.collections.api.CharIterablepublic org.eclipse.collections.api.LazyCharIterable asLazy()
asLazy in interface org.eclipse.collections.api.CharIterablepublic org.eclipse.collections.api.map.primitive.MutableDoubleCharMap withKeyValue(double key,
char value)
withKeyValue in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic org.eclipse.collections.api.map.primitive.MutableDoubleCharMap withoutKey(double key)
withoutKey in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic org.eclipse.collections.api.map.primitive.MutableDoubleCharMap withoutAllKeys(org.eclipse.collections.api.DoubleIterable keys)
withoutAllKeys in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic org.eclipse.collections.api.map.primitive.MutableDoubleCharMap asUnmodifiable()
asUnmodifiable in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic org.eclipse.collections.api.map.primitive.MutableDoubleCharMap asSynchronized()
asSynchronized in interface org.eclipse.collections.api.map.primitive.MutableDoubleCharMappublic org.eclipse.collections.api.map.primitive.ImmutableDoubleCharMap toImmutable()
toImmutable in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic int size()
size in interface org.eclipse.collections.api.PrimitiveIterablepublic boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.PrimitiveIterablepublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.PrimitiveIterablepublic org.eclipse.collections.api.set.primitive.MutableDoubleSet keySet()
keySet in interface org.eclipse.collections.api.map.primitive.DoubleCharMappublic org.eclipse.collections.api.collection.primitive.MutableCharCollection values()
values in interface org.eclipse.collections.api.map.primitive.CharValuesMappublic boolean equals(Object otherMap)
public int hashCode()
public String toString()
public String makeString()
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString(String separator)
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic <T> T injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction<? super T,? extends T> function)
injectInto in interface org.eclipse.collections.api.CharIterableCopyright © 2004–2018. All rights reserved.