Uses of Package
org.eclipse.collections.api.map
-
Packages that use org.eclipse.collections.api.map Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.bimap org.eclipse.collections.api.factory.map This package contains factory API for creating instances of typeMapIterable
.org.eclipse.collections.api.factory.map.strategy This package contains factory API for creating instances of maps with user definedHashingStrategy
s.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
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.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap This package contains interfaces forMultimap
.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollection
interface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.forkjoin This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join framework.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set org.eclipse.collections.impl.lazy.parallel.set.sorted org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMap
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.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 This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.multimap This package contains implementations of theMultimap
interface.org.eclipse.collections.impl.multimap.bag This package contains implementations of theBagMultimap
interface.org.eclipse.collections.impl.multimap.bag.sorted org.eclipse.collections.impl.multimap.bag.sorted.immutable org.eclipse.collections.impl.multimap.bag.sorted.mutable org.eclipse.collections.impl.multimap.bag.strategy org.eclipse.collections.impl.multimap.list This package contains implementations of theListMultimap
interface.org.eclipse.collections.impl.multimap.set This package contains implementations of theSetMultimap
interface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
interface.org.eclipse.collections.impl.multimap.set.strategy This package contains implementations of theSetMultimap
interface which use a set with user-definedHashingStrategy
as their underlying store for the multiple values of a given key.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.set org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.test This package containsSerializeTestHelper
andVerify
classes.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.bag Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.bimap Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.ImmutableMapIterable MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.collection Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.factory.bimap Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.factory.map Class Description FixedSizeMap A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.factory.map.strategy Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.map Class Description ConcurrentMutableMap A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.FixedSizeMap A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.ImmutableMapIterable ImmutableOrderedMap MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable MutableOrderedMap OrderedMap A map whose keys are ordered but not necessarily sorted, for example a linked hash map.UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.map.primitive Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.map.sorted Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.ImmutableMapIterable MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.multimap Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.api.stack Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.bag.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.bag.mutable Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.bag.sorted.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.bimap Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.bimap.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.ImmutableMapIterable MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.bimap.mutable Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.block.factory Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.block.procedure Class Description MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.collection Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.collection.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.collection.mutable Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.collector Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.factory Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableOrderedMap -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.forkjoin Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.lazy Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.lazy.parallel Class Description ConcurrentMutableMap A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.lazy.parallel.list Class Description ConcurrentMutableMap A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.lazy.parallel.set Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.lazy.parallel.set.sorted Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.list.mutable Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.fixed Class Description FixedSizeMap A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.ImmutableMapIterable MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.immutable.primitive Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.mutable Class Description ConcurrentMutableMap A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.mutable.primitive Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.ordered.mutable Class Description ImmutableOrderedMap MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable MutableOrderedMap OrderedMap A map whose keys are ordered but not necessarily sorted, for example a linked hash map. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.sorted.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.ImmutableMapIterable MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.sorted.mutable Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.strategy.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.ImmutableMapIterable MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.map.strategy.mutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable UnsortedMapIterable An iterable Map whose elements are unsorted. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.bag Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.bag.sorted Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.bag.sorted.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.bag.sorted.mutable Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.bag.strategy Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.list Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.set Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.set.sorted Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.multimap.set.strategy Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.parallel Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.set Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.set.mutable Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.set.sorted.immutable Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable. -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.stack.immutable Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.stack.mutable Class Description MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.test Class Description ImmutableMapIterable MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.utility Class Description MapIterable A Read-only Map API, with the minor exception inherited from java.lang.Iterable.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable -
Classes in org.eclipse.collections.api.map used by org.eclipse.collections.impl.utility.internal Class Description ImmutableMap An ImmutableMap is different from a JCF Map because it has no mutating methods.MutableMap A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.MutableMapIterable