Class AbstractSortedSetDecorator<E>
java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.set.AbstractSetDecorator<E>
org.apache.commons.collections4.set.AbstractSortedSetDecorator<E>
- Type Parameters:
E
- the type of the elements in the sorted set
- All Implemented Interfaces:
Serializable
,Iterable<E>
,Collection<E>
,Set<E>
,SortedSet<E>
- Direct Known Subclasses:
AbstractNavigableSetDecorator
,UnmodifiableSortedSet
public abstract class AbstractSortedSetDecorator<E>
extends AbstractSetDecorator<E>
implements SortedSet<E>
Decorates another
SortedSet
to provide additional behaviour.
Methods are forwarded directly to the decorated set.
- Since:
- 3.0
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Constructor only used in deserialization, do not use otherwise.protected
AbstractSortedSetDecorator
(Set<E> set) Constructor that wraps (not copies). -
Method Summary
Methods inherited from class org.apache.commons.collections4.set.AbstractSetDecorator
equals, hashCode
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, setCollection, size, toArray, toArray, toString
-
Constructor Details
-
AbstractSortedSetDecorator
protected AbstractSortedSetDecorator()Constructor only used in deserialization, do not use otherwise.- Since:
- 3.1
-
AbstractSortedSetDecorator
Constructor that wraps (not copies).- Parameters:
set
- the set to decorate, must not be null- Throws:
NullPointerException
- if set is null
-
-
Method Details
-
decorated
Gets the set being decorated.- Overrides:
decorated
in classAbstractSetDecorator<E>
- Returns:
- the decorated set
-
subSet
-
headSet
-
tailSet
-
first
-
last
-
comparator
- Specified by:
comparator
in interfaceSortedSet<E>
-