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 |
---|---|---|
ImmutableByteLongMap |
ImmutableByteLongMapFactory.empty() |
|
<T> ImmutableByteLongMap |
ImmutableByteLongMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
LongFunction<? super T> valueFunction) |
Creates an
ImmutableByteLongMap from an Iterable<T> by applying keyFunction and valueFunction . |
ImmutableByteLongMap |
ImmutableByteLongMapFactory.of() |
Same as
ImmutableByteLongMapFactory.empty() . |
ImmutableByteLongMap |
ImmutableByteLongMapFactory.of(byte key,
long value) |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactory.ofAll(ByteLongMap map) |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactory.with() |
Same as
ImmutableByteLongMapFactory.empty() . |
ImmutableByteLongMap |
ImmutableByteLongMapFactory.with(byte key,
long value) |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactory.withAll(ByteLongMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableByteLongMap |
ImmutableLongByteMap.flipUniqueValues() |
|
ImmutableByteLongMap |
ImmutableByteLongMap.newWithKeyValue(byte key,
long value) |
|
ImmutableByteLongMap |
ImmutableByteLongMap.newWithoutAllKeys(ByteIterable keys) |
|
ImmutableByteLongMap |
ImmutableByteLongMap.newWithoutKey(byte key) |
|
ImmutableByteLongMap |
ImmutableByteLongMap.reject(ByteLongPredicate predicate) |
|
ImmutableByteLongMap |
ImmutableByteLongMap.select(ByteLongPredicate predicate) |
|
ImmutableByteLongMap |
ByteLongMap.toImmutable() |
Modifier and Type | Method | Description |
---|---|---|
ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.empty() |
|
<T> ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
LongFunction<? super T> valueFunction) |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.of() |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.of(byte key,
long value) |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.ofAll(ByteLongMap map) |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.with() |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.with(byte key,
long value) |
|
ImmutableByteLongMap |
ImmutableByteLongMapFactoryImpl.withAll(ByteLongMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableByteLongMap |
ByteLongHashMap.toImmutable() |
|
ImmutableByteLongMap |
SynchronizedByteLongMap.toImmutable() |
|
ImmutableByteLongMap |
UnmodifiableByteLongMap.toImmutable() |
Copyright © 2004–2019. All rights reserved.