Package | Description |
---|---|
org.eclipse.collections.api.factory.map.primitive | |
org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
Modifier and Type | Method | Description |
---|---|---|
MutableByteByteMap |
MutableByteByteMapFactory.empty() |
|
<T> MutableByteByteMap |
MutableByteByteMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction) |
Creates an
MutableByteByteMap from an Iterable<T> by applying keyFunction and valueFunction . |
MutableByteByteMap |
MutableByteByteMapFactory.of() |
Same as
MutableByteByteMapFactory.empty() . |
MutableByteByteMap |
MutableByteByteMapFactory.ofAll(ByteByteMap map) |
|
MutableByteByteMap |
MutableByteByteMapFactory.ofInitialCapacity(int capacity) |
Same as
MutableByteByteMapFactory.empty() . |
MutableByteByteMap |
MutableByteByteMapFactory.with() |
Same as
MutableByteByteMapFactory.empty() . |
MutableByteByteMap |
MutableByteByteMapFactory.withAll(ByteByteMap map) |
|
MutableByteByteMap |
MutableByteByteMapFactory.withInitialCapacity(int capacity) |
Same as
MutableByteByteMapFactory.empty() . |
Modifier and Type | Method | Description |
---|---|---|
MutableByteByteMap |
MutableByteByteMap.asSynchronized() |
|
MutableByteByteMap |
MutableByteByteMap.asUnmodifiable() |
|
MutableByteByteMap |
MutableByteByteMap.flipUniqueValues() |
|
MutableByteByteMap |
MutableByteByteMap.reject(ByteBytePredicate predicate) |
|
MutableByteByteMap |
MutableByteByteMap.select(ByteBytePredicate predicate) |
|
default MutableByteByteMap |
MutableByteByteMap.withAllKeyValues(Iterable<ByteBytePair> keyValuePairs) |
|
MutableByteByteMap |
MutableByteByteMap.withKeyValue(byte key,
byte value) |
|
MutableByteByteMap |
MutableByteByteMap.withoutAllKeys(ByteIterable keys) |
|
MutableByteByteMap |
MutableByteByteMap.withoutKey(byte key) |
Modifier and Type | Class | Description |
---|---|---|
class |
ByteByteHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
SynchronizedByteByteMap |
A synchronized view of a
MutableByteByteMap . |
class |
UnmodifiableByteByteMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableByteByteMap |
ByteByteHashMap.asSynchronized() |
|
MutableByteByteMap |
SynchronizedByteByteMap.asSynchronized() |
|
MutableByteByteMap |
UnmodifiableByteByteMap.asSynchronized() |
|
MutableByteByteMap |
ByteByteHashMap.asUnmodifiable() |
|
MutableByteByteMap |
SynchronizedByteByteMap.asUnmodifiable() |
|
MutableByteByteMap |
UnmodifiableByteByteMap.asUnmodifiable() |
|
MutableByteByteMap |
MutableByteByteMapFactoryImpl.empty() |
|
MutableByteByteMap |
ByteByteHashMap.flipUniqueValues() |
|
MutableByteByteMap |
SynchronizedByteByteMap.flipUniqueValues() |
|
MutableByteByteMap |
UnmodifiableByteByteMap.flipUniqueValues() |
|
<T> MutableByteByteMap |
MutableByteByteMapFactoryImpl.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction) |
|
MutableByteByteMap |
MutableByteByteMapFactoryImpl.of() |
|
MutableByteByteMap |
MutableByteByteMapFactoryImpl.ofAll(ByteByteMap map) |
|
MutableByteByteMap |
MutableByteByteMapFactoryImpl.ofInitialCapacity(int capacity) |
|
MutableByteByteMap |
SynchronizedByteByteMap.reject(ByteBytePredicate predicate) |
|
MutableByteByteMap |
UnmodifiableByteByteMap.reject(ByteBytePredicate predicate) |
|
MutableByteByteMap |
SynchronizedByteByteMap.select(ByteBytePredicate predicate) |
|
MutableByteByteMap |
UnmodifiableByteByteMap.select(ByteBytePredicate predicate) |
|
MutableByteByteMap |
MutableByteByteMapFactoryImpl.with() |
|
MutableByteByteMap |
MutableByteByteMapFactoryImpl.withAll(ByteByteMap map) |
|
MutableByteByteMap |
MutableByteByteMapFactoryImpl.withInitialCapacity(int capacity) |
|
MutableByteByteMap |
SynchronizedByteByteMap.withKeyValue(byte key,
byte value) |
|
MutableByteByteMap |
UnmodifiableByteByteMap.withKeyValue(byte key,
byte value) |
|
MutableByteByteMap |
SynchronizedByteByteMap.withoutAllKeys(ByteIterable keys) |
|
MutableByteByteMap |
UnmodifiableByteByteMap.withoutAllKeys(ByteIterable keys) |
|
MutableByteByteMap |
SynchronizedByteByteMap.withoutKey(byte key) |
|
MutableByteByteMap |
UnmodifiableByteByteMap.withoutKey(byte key) |
Constructor | Description |
---|---|
SynchronizedByteByteMap(MutableByteByteMap map) |
|
SynchronizedByteByteMap(MutableByteByteMap map,
Object newLock) |
|
UnmodifiableByteByteMap(MutableByteByteMap map) |
Copyright © 2004–2019. All rights reserved.