Uses of Interface
org.jhotdraw8.icollection.readonly.ReadOnlyMap
Packages that use ReadOnlyMap
Package
Description
Provides mutable and immutable collections.
Provides facades of collection interfaces.
Defines interfaces to immutable collections.
Provides collections which use a Compressed Hash-Array Mapped Prefix-tree
(CHAMP) as their internal data structure.
Provides the implementation of a Compressed Hash-Array Mapped Prefix-tree
(CHAMP).
Defines read-only interfaces to collections, and provides abstract base classes for them.
-
Uses of ReadOnlyMap in org.jhotdraw8.icollection
Classes in org.jhotdraw8.icollection that implement ReadOnlyMapModifier and TypeClassDescriptionclassChampMap<K,V> Implements theImmutableMapinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP).classChampVectorMap<K,V> Implements theImmutableSequencedMapinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP) and a bit-mapped trie (Vector).classMutableChampMap<K,V> Implements theMapinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP).classImplements theSequencedMapinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP) and a bit-mapped trie (Vector).classMutableRedBlackMap<K,V> classRedBlackMap<K,V> Implements theImmutableNavigableSetinterface using a Red-Black tree. -
Uses of ReadOnlyMap in org.jhotdraw8.icollection.facade
Classes in org.jhotdraw8.icollection.facade that implement ReadOnlyMapModifier and TypeClassDescriptionclassImmutableMapFacade<K,V> Provides aImmutableMapfacade to a set ofImmutableMapfunctions.classReadOnlyMapFacade<K,V> Provides aReadOnlyMapfacade to a set ofReadOnlyMapfunctions.classProvides aReadOnlyNavigableMapfacade to a set ofReadOnlyNavigableMapfunctions.classProvides aReadOnlySequencedMapfacade to a set ofReadOnlySequencedMapfunctions.classProvides aReadOnlySortedMapfacade to a set ofReadOnlySortedMapfunctions.Constructors in org.jhotdraw8.icollection.facade with parameters of type ReadOnlyMap -
Uses of ReadOnlyMap in org.jhotdraw8.icollection.immutable
Subinterfaces of ReadOnlyMap in org.jhotdraw8.icollection.immutableModifier and TypeInterfaceDescriptioninterfaceImmutableMap<K,V> An interface to an immutable map; the implementation guarantees that the state of the map does not change.interfaceAn interface to an immutable navigable map; the implementation guarantees that the state of the collection does not change.interfaceAn interface to an immutable map with a well-defined iteration order; the implementation guarantees that the state of the collection does not change.interfaceImmutableSortedMap<K,V> An interface to an immutable sorted map; the implementation guarantees that the state of the collection does not change. -
Uses of ReadOnlyMap in org.jhotdraw8.icollection.impl.champ
Classes in org.jhotdraw8.icollection.impl.champ that implement ReadOnlyMapModifier and TypeClassDescriptionclassorg.jhotdraw8.icollection.impl.champ.AbstractMutableChampMap<K,V, D> Abstract base class for CHAMP maps. -
Uses of ReadOnlyMap in org.jhotdraw8.icollection.impl.champmap
Classes in org.jhotdraw8.icollection.impl.champmap that implement ReadOnlyMapModifier and TypeClassDescriptionclassorg.jhotdraw8.icollection.impl.champmap.AbstractMutableChampMap<K,V> Abstract base class for CHAMP maps. -
Uses of ReadOnlyMap in org.jhotdraw8.icollection.readonly
Subinterfaces of ReadOnlyMap in org.jhotdraw8.icollection.readonlyModifier and TypeInterfaceDescriptioninterfaceReadOnlyNavigableMap<K,V> A read-only interface to a navigable map.interfaceReadOnlySequencedMap<K,V> A read-only interface to a sequenced map.interfaceReadOnlySortedMap<K,V> A read-only interface to a sorted map.Classes in org.jhotdraw8.icollection.readonly that implement ReadOnlyMapModifier and TypeClassDescriptionclassAbstractReadOnlyMap<K,V> Abstract base class forReadOnlyMaps.Methods in org.jhotdraw8.icollection.readonly with parameters of type ReadOnlyMapModifier and TypeMethodDescriptionstatic <K,V> boolean ReadOnlyMap.mapEquals(ReadOnlyMap<K, V> map, Object o) Compares a read-only map with an object for equality.static <K,V> String ReadOnlyMap.mapToString(ReadOnlyMap<K, V> map) Returns a string representation of the specified map.