org.apache.commons.collections.set
Class AbstractSortedSetDecorator
java.lang.Object
org.apache.commons.collections.collection.AbstractCollectionDecorator
org.apache.commons.collections.set.AbstractSetDecorator
org.apache.commons.collections.set.AbstractSortedSetDecorator
- All Implemented Interfaces:
- Iterable, Collection, Set, SortedSet
- Direct Known Subclasses:
- UnmodifiableSortedSet
public abstract class AbstractSortedSetDecorator
- extends AbstractSetDecorator
- implements SortedSet
Decorates another SortedSet
to provide additional behaviour.
Methods are forwarded directly to the decorated set.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 13:33:15 +0100 (Thu, 10 Apr 2008) $
- Author:
- Stephen Colebourne
Methods inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator |
add, addAll, clear, contains, containsAll, equals, getCollection, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
Methods inherited from interface java.util.Set |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
AbstractSortedSetDecorator
protected AbstractSortedSetDecorator()
- Constructor only used in deserialization, do not use otherwise.
- Since:
- Commons Collections 3.1
AbstractSortedSetDecorator
protected AbstractSortedSetDecorator(Set set)
- Constructor that wraps (not copies).
- Parameters:
set
- the set to decorate, must not be null
- Throws:
IllegalArgumentException
- if set is null
getSortedSet
protected SortedSet getSortedSet()
- Gets the sorted set being decorated.
- Returns:
- the decorated set
subSet
public SortedSet subSet(Object fromElement,
Object toElement)
- Specified by:
subSet
in interface SortedSet
headSet
public SortedSet headSet(Object toElement)
- Specified by:
headSet
in interface SortedSet
tailSet
public SortedSet tailSet(Object fromElement)
- Specified by:
tailSet
in interface SortedSet
first
public Object first()
- Specified by:
first
in interface SortedSet
last
public Object last()
- Specified by:
last
in interface SortedSet
comparator
public Comparator comparator()
- Specified by:
comparator
in interface SortedSet
Copyright © 2001-2013 Apache Software Foundation. All Rights Reserved.