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 |
---|---|---|
ImmutableLongIntMap |
ImmutableLongIntMapFactory.empty() |
|
<T> ImmutableLongIntMap |
ImmutableLongIntMapFactory.from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction) |
Creates an
ImmutableLongIntMap from an Iterable<T> by applying keyFunction and valueFunction . |
ImmutableLongIntMap |
ImmutableLongIntMapFactory.of() |
Same as
ImmutableLongIntMapFactory.empty() . |
ImmutableLongIntMap |
ImmutableLongIntMapFactory.of(long key,
int value) |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactory.ofAll(LongIntMap map) |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactory.with() |
Same as
ImmutableLongIntMapFactory.empty() . |
ImmutableLongIntMap |
ImmutableLongIntMapFactory.with(long key,
int value) |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactory.withAll(LongIntMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableLongIntMap |
ImmutableIntLongMap.flipUniqueValues() |
|
ImmutableLongIntMap |
ImmutableLongIntMap.newWithKeyValue(long key,
int value) |
|
ImmutableLongIntMap |
ImmutableLongIntMap.newWithoutAllKeys(LongIterable keys) |
|
ImmutableLongIntMap |
ImmutableLongIntMap.newWithoutKey(long key) |
|
ImmutableLongIntMap |
ImmutableLongIntMap.reject(LongIntPredicate predicate) |
|
ImmutableLongIntMap |
ImmutableLongIntMap.select(LongIntPredicate predicate) |
|
ImmutableLongIntMap |
LongIntMap.toImmutable() |
Modifier and Type | Method | Description |
---|---|---|
ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.empty() |
|
<T> ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction) |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.of() |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.of(long key,
int value) |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.ofAll(LongIntMap map) |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.with() |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.with(long key,
int value) |
|
ImmutableLongIntMap |
ImmutableLongIntMapFactoryImpl.withAll(LongIntMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableLongIntMap |
LongIntHashMap.toImmutable() |
|
ImmutableLongIntMap |
SynchronizedLongIntMap.toImmutable() |
|
ImmutableLongIntMap |
UnmodifiableLongIntMap.toImmutable() |
Copyright © 2004–2019. All rights reserved.