public final class SynchronizedLongByteMap extends Object implements org.eclipse.collections.api.map.primitive.MutableLongByteMap, Serializable
MutableLongByteMap. It is imperative that the user manually synchronize on the collection when iterating over it using the
MutableByteIterator as per Collections.synchronizedCollection(Collection).
This file was automatically generated from template file synchronizedPrimitivePrimitiveMap.stg.
MutableLongByteMap.asSynchronized(),
MutableMap.asSynchronized(),
Serialized Form| Modifier and Type | Method and Description |
|---|---|
byte |
addToValue(long key,
byte toBeAdded) |
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate 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.LazyByteIterable |
asLazy() |
org.eclipse.collections.api.map.primitive.MutableLongByteMap |
asSynchronized() |
org.eclipse.collections.api.map.primitive.MutableLongByteMap |
asUnmodifiable() |
double |
average() |
org.eclipse.collections.api.iterator.MutableByteIterator |
byteIterator()
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.ByteToObjectFunction<? extends V> function) |
boolean |
contains(byte value) |
boolean |
containsAll(byte... source) |
boolean |
containsAll(org.eclipse.collections.api.ByteIterable source) |
boolean |
containsKey(long key) |
boolean |
containsValue(byte value) |
int |
count(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate) |
byte |
detectIfNone(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate,
byte ifNone) |
void |
each(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure) |
boolean |
equals(Object otherMap) |
void |
forEach(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure) |
void |
forEachKey(org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure) |
void |
forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.LongByteProcedure procedure) |
void |
forEachValue(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure) |
byte |
get(long key) |
byte |
getIfAbsent(long key,
byte ifAbsent) |
byte |
getIfAbsentPut(long key,
byte value) |
byte |
getIfAbsentPut(long key,
org.eclipse.collections.api.block.function.primitive.ByteFunction0 function) |
<P> byte |
getIfAbsentPutWith(long key,
org.eclipse.collections.api.block.function.primitive.ByteFunction<? super P> function,
P parameter) |
byte |
getIfAbsentPutWithKey(long key,
org.eclipse.collections.api.block.function.primitive.LongToByteFunction function) |
byte |
getOrThrow(long key) |
int |
hashCode() |
<T> T |
injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty() |
org.eclipse.collections.api.set.primitive.MutableLongSet |
keySet() |
org.eclipse.collections.api.LazyLongIterable |
keysView() |
org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.LongBytePair> |
keyValuesView() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
byte |
max() |
byte |
maxIfEmpty(byte defaultValue) |
double |
median() |
byte |
min() |
byte |
minIfEmpty(byte defaultValue) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate) |
boolean |
notEmpty() |
void |
put(long key,
byte value) |
void |
putAll(org.eclipse.collections.api.map.primitive.LongByteMap map) |
org.eclipse.collections.api.collection.primitive.MutableByteCollection |
reject(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate) |
org.eclipse.collections.api.map.primitive.MutableLongByteMap |
reject(org.eclipse.collections.api.block.predicate.primitive.LongBytePredicate predicate) |
void |
remove(long key) |
void |
removeKey(long key) |
byte |
removeKeyIfAbsent(long key,
byte value) |
org.eclipse.collections.api.collection.primitive.MutableByteCollection |
select(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate) |
org.eclipse.collections.api.map.primitive.MutableLongByteMap |
select(org.eclipse.collections.api.block.predicate.primitive.LongBytePredicate predicate) |
int |
size() |
long |
sum() |
byte[] |
toArray() |
org.eclipse.collections.api.bag.primitive.MutableByteBag |
toBag() |
org.eclipse.collections.api.map.primitive.ImmutableLongByteMap |
toImmutable() |
org.eclipse.collections.api.list.primitive.MutableByteList |
toList() |
org.eclipse.collections.api.set.primitive.MutableByteSet |
toSet() |
byte[] |
toSortedArray() |
org.eclipse.collections.api.list.primitive.MutableByteList |
toSortedList() |
String |
toString() |
byte |
updateValue(long key,
byte initialValueIfAbsent,
org.eclipse.collections.api.block.function.primitive.ByteToByteFunction function) |
org.eclipse.collections.api.collection.primitive.MutableByteCollection |
values() |
org.eclipse.collections.api.map.primitive.MutableLongByteMap |
withKeyValue(long key,
byte value) |
org.eclipse.collections.api.map.primitive.MutableLongByteMap |
withoutAllKeys(org.eclipse.collections.api.LongIterable keys) |
org.eclipse.collections.api.map.primitive.MutableLongByteMap |
withoutKey(long key) |
public void clear()
clear in interface org.eclipse.collections.api.map.primitive.MutableByteValuesMappublic void put(long key,
byte value)
put in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic void putAll(org.eclipse.collections.api.map.primitive.LongByteMap map)
putAll in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic void removeKey(long key)
removeKey in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic void remove(long key)
remove in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic byte removeKeyIfAbsent(long key,
byte value)
removeKeyIfAbsent in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic byte getIfAbsentPut(long key,
byte value)
getIfAbsentPut in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic byte getIfAbsentPut(long key,
org.eclipse.collections.api.block.function.primitive.ByteFunction0 function)
getIfAbsentPut in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic byte getIfAbsentPutWithKey(long key,
org.eclipse.collections.api.block.function.primitive.LongToByteFunction function)
getIfAbsentPutWithKey in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic <P> byte getIfAbsentPutWith(long key,
org.eclipse.collections.api.block.function.primitive.ByteFunction<? super P> function,
P parameter)
getIfAbsentPutWith in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic byte updateValue(long key,
byte initialValueIfAbsent,
org.eclipse.collections.api.block.function.primitive.ByteToByteFunction function)
updateValue in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic byte get(long key)
get in interface org.eclipse.collections.api.map.primitive.LongByteMappublic byte getIfAbsent(long key,
byte ifAbsent)
getIfAbsent in interface org.eclipse.collections.api.map.primitive.LongByteMappublic byte getOrThrow(long key)
getOrThrow in interface org.eclipse.collections.api.map.primitive.LongByteMappublic boolean containsKey(long key)
containsKey in interface org.eclipse.collections.api.map.primitive.LongByteMappublic boolean containsValue(byte value)
containsValue in interface org.eclipse.collections.api.map.primitive.ByteValuesMappublic void forEachValue(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure)
forEachValue in interface org.eclipse.collections.api.map.primitive.ByteValuesMappublic void forEachKey(org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure)
forEachKey in interface org.eclipse.collections.api.map.primitive.LongByteMappublic void forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.LongByteProcedure procedure)
forEachKeyValue in interface org.eclipse.collections.api.map.primitive.LongByteMappublic org.eclipse.collections.api.LazyLongIterable keysView()
keysView in interface org.eclipse.collections.api.map.primitive.LongByteMappublic org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.LongBytePair> keyValuesView()
keyValuesView in interface org.eclipse.collections.api.map.primitive.LongByteMappublic org.eclipse.collections.api.map.primitive.MutableLongByteMap select(org.eclipse.collections.api.block.predicate.primitive.LongBytePredicate predicate)
select in interface org.eclipse.collections.api.map.primitive.LongByteMapselect in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic org.eclipse.collections.api.map.primitive.MutableLongByteMap reject(org.eclipse.collections.api.block.predicate.primitive.LongBytePredicate predicate)
reject in interface org.eclipse.collections.api.map.primitive.LongByteMapreject in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic org.eclipse.collections.api.iterator.MutableByteIterator byteIterator()
byteIterator in interface org.eclipse.collections.api.ByteIterablebyteIterator in interface org.eclipse.collections.api.map.primitive.MutableByteValuesMappublic void forEach(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure)
forEach in interface org.eclipse.collections.api.ByteIterablepublic void each(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure)
each in interface org.eclipse.collections.api.ByteIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate)
count in interface org.eclipse.collections.api.ByteIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate)
anySatisfy in interface org.eclipse.collections.api.ByteIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate)
allSatisfy in interface org.eclipse.collections.api.ByteIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.ByteIterablepublic org.eclipse.collections.api.collection.primitive.MutableByteCollection select(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate)
select in interface org.eclipse.collections.api.ByteIterableselect in interface org.eclipse.collections.api.map.primitive.MutableByteValuesMappublic org.eclipse.collections.api.collection.primitive.MutableByteCollection reject(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate)
reject in interface org.eclipse.collections.api.ByteIterablereject in interface org.eclipse.collections.api.map.primitive.MutableByteValuesMappublic byte detectIfNone(org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate,
byte ifNone)
detectIfNone in interface org.eclipse.collections.api.ByteIterablepublic <V> org.eclipse.collections.api.collection.MutableCollection<V> collect(org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction<? extends V> function)
collect in interface org.eclipse.collections.api.ByteIterablecollect in interface org.eclipse.collections.api.map.primitive.MutableByteValuesMappublic long sum()
sum in interface org.eclipse.collections.api.ByteIterablepublic byte max()
max in interface org.eclipse.collections.api.ByteIterablepublic byte maxIfEmpty(byte defaultValue)
maxIfEmpty in interface org.eclipse.collections.api.ByteIterablepublic byte min()
min in interface org.eclipse.collections.api.ByteIterablepublic byte minIfEmpty(byte defaultValue)
minIfEmpty in interface org.eclipse.collections.api.ByteIterablepublic double average()
average in interface org.eclipse.collections.api.ByteIterablepublic double median()
median in interface org.eclipse.collections.api.ByteIterablepublic byte addToValue(long key,
byte toBeAdded)
addToValue in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic byte[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.ByteIterablepublic org.eclipse.collections.api.list.primitive.MutableByteList toSortedList()
toSortedList in interface org.eclipse.collections.api.ByteIterablepublic byte[] toArray()
toArray in interface org.eclipse.collections.api.ByteIterablepublic boolean contains(byte value)
contains in interface org.eclipse.collections.api.ByteIterablepublic boolean containsAll(byte... source)
containsAll in interface org.eclipse.collections.api.ByteIterablepublic boolean containsAll(org.eclipse.collections.api.ByteIterable source)
containsAll in interface org.eclipse.collections.api.ByteIterablepublic org.eclipse.collections.api.list.primitive.MutableByteList toList()
toList in interface org.eclipse.collections.api.ByteIterablepublic org.eclipse.collections.api.set.primitive.MutableByteSet toSet()
toSet in interface org.eclipse.collections.api.ByteIterablepublic org.eclipse.collections.api.bag.primitive.MutableByteBag toBag()
toBag in interface org.eclipse.collections.api.ByteIterablepublic org.eclipse.collections.api.LazyByteIterable asLazy()
asLazy in interface org.eclipse.collections.api.ByteIterablepublic org.eclipse.collections.api.map.primitive.MutableLongByteMap withKeyValue(long key,
byte value)
withKeyValue in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic org.eclipse.collections.api.map.primitive.MutableLongByteMap withoutKey(long key)
withoutKey in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic org.eclipse.collections.api.map.primitive.MutableLongByteMap withoutAllKeys(org.eclipse.collections.api.LongIterable keys)
withoutAllKeys in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic org.eclipse.collections.api.map.primitive.MutableLongByteMap asUnmodifiable()
asUnmodifiable in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic org.eclipse.collections.api.map.primitive.MutableLongByteMap asSynchronized()
asSynchronized in interface org.eclipse.collections.api.map.primitive.MutableLongByteMappublic org.eclipse.collections.api.map.primitive.ImmutableLongByteMap toImmutable()
toImmutable in interface org.eclipse.collections.api.map.primitive.LongByteMappublic 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.MutableLongSet keySet()
keySet in interface org.eclipse.collections.api.map.primitive.LongByteMappublic org.eclipse.collections.api.collection.primitive.MutableByteCollection values()
values in interface org.eclipse.collections.api.map.primitive.ByteValuesMappublic 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.ObjectByteToObjectFunction<? super T,? extends T> function)
injectInto in interface org.eclipse.collections.api.ByteIterableCopyright © 2004–2017. All rights reserved.