Interface | Description |
---|---|
CompositeSet.SetMutator<E> |
Define callbacks for mutation operations.
|
Class | Description |
---|---|
AbstractNavigableSetDecorator<E> |
Decorates another
NavigableSet to provide additional behaviour. |
AbstractSerializableSetDecorator<E> |
Serializable subclass of AbstractSetDecorator.
|
AbstractSetDecorator<E> |
Decorates another
Set to provide additional behaviour. |
AbstractSortedSetDecorator<E> |
Decorates another
SortedSet to provide additional behaviour. |
CompositeSet<E> |
Decorates a set of other sets to provide a single unified view.
|
ListOrderedSet<E> |
Decorates another
Set to ensure that the order of addition is
retained and used by the iterator. |
MapBackedSet<E,V> |
Decorates a
Map to obtain Set behaviour. |
PredicatedNavigableSet<E> |
Decorates another
NavigableSet to validate that all additions
match a specified predicate. |
PredicatedSet<E> |
Decorates another
Set to validate that all additions
match a specified predicate. |
PredicatedSortedSet<E> |
Decorates another
SortedSet to validate that all additions
match a specified predicate. |
TransformedNavigableSet<E> |
Decorates another
NavigableSet to transform objects that are added. |
TransformedSet<E> |
Decorates another
Set to transform objects that are added. |
TransformedSortedSet<E> |
Decorates another
SortedSet to transform objects that are added. |
UnmodifiableNavigableSet<E> |
Decorates another
NavigableSet to ensure it can't be altered. |
UnmodifiableSet<E> |
Decorates another
Set to ensure it can't be altered. |
UnmodifiableSortedSet<E> |
Decorates another
SortedSet to ensure it can't be altered. |
Set
,
SortedSet
and
NavigableSet
interfaces.
The implementations are in the form of direct implementations and decorators. A decorator wraps another implementation of the interface to add some specific additional functionality.
The following implementations are provided in the package:
Copyright © 2001–2019 The Apache Software Foundation. All rights reserved.