| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.map |
This package contains factory API for creating instances of type
MapIterable. |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| Modifier and Type | Method and Description |
|---|---|
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.empty() |
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.of()
Same as
FixedSizeMapFactory.empty(). |
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.of(K key,
V value)
|
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.of(K key1,
V value1,
K key2,
V value2)
|
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
|
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.with()
Same as
FixedSizeMapFactory.empty(). |
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.with(K key,
V value) |
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> FixedSizeMap<K,V> |
FixedSizeMapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
| Modifier and Type | Method and Description |
|---|---|
FixedSizeMap<K,V> |
FixedSizeMap.tap(Procedure<? super V> procedure) |
default FixedSizeMap<K,V> |
FixedSizeMap.withMap(Map<? extends K,? extends V> map) |
default FixedSizeMap<K,V> |
FixedSizeMap.withMapIterable(MapIterable<? extends K,? extends V> mapIterable) |
Copyright © 2004–2022. All rights reserved.