Uses of Interface
org.eclipse.collections.api.map.FixedSizeMap
-
Packages that use FixedSizeMap Package Description org.eclipse.collections.api.factory.map This package contains factory API for creating instances of typeMapIterable.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap -
-
Uses of FixedSizeMap in org.eclipse.collections.api.factory.map
Methods in org.eclipse.collections.api.factory.map that return FixedSizeMap Modifier and Type Method Description <K,V>
FixedSizeMap<K,V>FixedSizeMapFactory. empty()<K,V>
FixedSizeMap<K,V>FixedSizeMapFactory. of()Same asFixedSizeMapFactory.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 asFixedSizeMapFactory.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) -
Uses of FixedSizeMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return FixedSizeMap Modifier and Type Method 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)
-