MultiSet
interface.See: Description
Class | Description |
---|---|
AbstractMapMultiSet<E> |
Abstract implementation of the
MultiSet interface to simplify the
creation of subclass implementations. |
AbstractMultiSet<E> |
Abstract implementation of the
MultiSet interface to simplify the
creation of subclass implementations. |
AbstractMultiSetDecorator<E> |
Decorates another
MultSet to provide additional behaviour. |
HashMultiSet<E> |
Implements
MultiSet , using a HashMap to provide the
data storage. |
PredicatedMultiSet<E> |
Decorates another
MultiSet to validate that additions
match a specified predicate. |
SynchronizedMultiSet<E> |
Decorates another
MultiSet to synchronize its behaviour
for a multi-threaded environment. |
UnmodifiableMultiSet<E> |
Decorates another
MultiSet to ensure it can't be altered. |
MultiSet
interface.
A multiset stores an object and a count of the number of occurrences of the object.
The following implementations are provided in the package:
The following decorators are provided in the package:
Copyright © 2010 - 2020 Adobe. All Rights Reserved