Uses of Interface
org.jhotdraw8.icollection.readonly.ReadOnlySet
Packages that use ReadOnlySet
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.
Defines read-only interfaces to collections, and provides abstract base classes for them.
-
Uses of ReadOnlySet in org.jhotdraw8.icollection
Classes in org.jhotdraw8.icollection that implement ReadOnlySetModifier and TypeClassDescriptionclassChampSet<E>Implements theImmutableSetinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP).classImplements theImmutableSequencedSetinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP) and a bit-mapped trie (Vector).classImplements theSetinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP).classImplements theSequencedSetinterface using a Compressed Hash-Array Mapped Prefix-tree (CHAMP) and a bit-mapped trie (Vector).classImplements theNavigableSetinterface using a Red-Black tree.classRedBlackSet<E>Implements theImmutableNavigableSetinterface using a Red-Black tree.Methods in org.jhotdraw8.icollection that return ReadOnlySet -
Uses of ReadOnlySet in org.jhotdraw8.icollection.facade
Classes in org.jhotdraw8.icollection.facade that implement ReadOnlySetModifier and TypeClassDescriptionclassProvides aImmutableSetfacade to a set ofImmutableSetfunctions.classProvides aSetfacade to a set ofImmutableSetfunctions.classclassProvides aReadOnlyNavigableSetfacade to a set ofNavigableSetfunctions.classProvides aReadOnlySequencedSetfacade to a set ofSequencedSetfunctions.classProvides aReadOnlySetfacade to a set ofSetfunctions.classProvides aReadOnlySortedSetfacade to a set ofSortedSetfunctions.classProvides aSequencedSetfacade to a set ofSetfunctions.classSetFacade<E>Provides aSetfacade to a set ofSetfunctions.Constructors in org.jhotdraw8.icollection.facade with parameters of type ReadOnlySet -
Uses of ReadOnlySet in org.jhotdraw8.icollection.immutable
Subinterfaces of ReadOnlySet in org.jhotdraw8.icollection.immutableModifier and TypeInterfaceDescriptioninterfaceAn interface to an immutable navigable set; the implementation guarantees that the state of the collection does not change.interfaceAn interface to an immutable set with a well-defined iteration order; the implementation guarantees that the state of the collection does not change.interfaceImmutableSet<E>An interface to an immutable set; the implementation guarantees that the state of the collection does not change.interfaceAn interface to an immutable sorted set; the implementation guarantees that the state of the collection does not change. -
Uses of ReadOnlySet in org.jhotdraw8.icollection.impl.champ
Classes in org.jhotdraw8.icollection.impl.champ that implement ReadOnlySetModifier and TypeClassDescriptionclassorg.jhotdraw8.icollection.impl.champ.AbstractMutableChampSet<E,D> Abstract base class for CHAMP sets. -
Uses of ReadOnlySet in org.jhotdraw8.icollection.readonly
Subinterfaces of ReadOnlySet in org.jhotdraw8.icollection.readonlyModifier and TypeInterfaceDescriptioninterfaceA read-only interface to a navigable set.interfaceA read-only interface to a sequenced set.interfaceA read-only interface to a sorted set.Classes in org.jhotdraw8.icollection.readonly that implement ReadOnlySetMethods in org.jhotdraw8.icollection.readonly that return ReadOnlySetModifier and TypeMethodDescriptiondefault @NonNull ReadOnlySet<Map.Entry<K, V>> ReadOnlyMap.readOnlyEntrySet()Returns aReadOnlySetview to the entries contained in this map.default @NonNull ReadOnlySet<K> ReadOnlyMap.readOnlyKeySet()Returns aReadOnlySetview to the keys contained in this map.Methods in org.jhotdraw8.icollection.readonly with parameters of type ReadOnlySetModifier and TypeMethodDescriptionstatic <E> booleanReadOnlySet.setEquals(@NonNull ReadOnlySet<E> set, @Nullable Object o) Compares a read-only set with an object for equality.