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.immutable.primitive |
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
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 |
---|---|---|
ImmutableIntByteMap |
ImmutableIntByteMapFactory.empty() |
|
<T> ImmutableIntByteMap |
ImmutableIntByteMapFactory.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction) |
Creates an
ImmutableIntByteMap from an Iterable<T> by applying keyFunction and valueFunction . |
ImmutableIntByteMap |
ImmutableIntByteMapFactory.of() |
Same as
ImmutableIntByteMapFactory.empty() . |
ImmutableIntByteMap |
ImmutableIntByteMapFactory.of(int key,
byte value) |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactory.ofAll(IntByteMap map) |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactory.with() |
Same as
ImmutableIntByteMapFactory.empty() . |
ImmutableIntByteMap |
ImmutableIntByteMapFactory.with(int key,
byte value) |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactory.withAll(IntByteMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableIntByteMap |
ImmutableByteIntMap.flipUniqueValues() |
|
ImmutableIntByteMap |
ImmutableIntByteMap.newWithKeyValue(int key,
byte value) |
|
ImmutableIntByteMap |
ImmutableIntByteMap.newWithoutAllKeys(IntIterable keys) |
|
ImmutableIntByteMap |
ImmutableIntByteMap.newWithoutKey(int key) |
|
ImmutableIntByteMap |
ImmutableIntByteMap.reject(IntBytePredicate predicate) |
|
ImmutableIntByteMap |
ImmutableIntByteMap.select(IntBytePredicate predicate) |
|
ImmutableIntByteMap |
IntByteMap.toImmutable() |
Modifier and Type | Method | Description |
---|---|---|
ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.empty() |
|
<T> ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction) |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.of() |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.of(int key,
byte value) |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.ofAll(IntByteMap map) |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.with() |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.with(int key,
byte value) |
|
ImmutableIntByteMap |
ImmutableIntByteMapFactoryImpl.withAll(IntByteMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableIntByteMap |
IntByteHashMap.toImmutable() |
|
ImmutableIntByteMap |
SynchronizedIntByteMap.toImmutable() |
|
ImmutableIntByteMap |
UnmodifiableIntByteMap.toImmutable() |
Copyright © 2004–2019. All rights reserved.