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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
Serialization version -
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, removeIf, retainAll, setCollection, size, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
Methods inherited from interface java.util.SortedSet
spliterator
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerialization version- See Also:
-
-
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>
-