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:
java.lang.Iterable,java.util.Collection,java.util.Set,java.util.SortedSet
- Direct Known Subclasses:
UnmodifiableSortedSet
@Deprecated(since="2021-04-30") public abstract class AbstractSortedSetDecorator extends AbstractSetDecorator implements java.util.SortedSet
Deprecated.Apache Commons Collections version 3.x is being deprecated from AEMaaCS. The upgraded version 4.4 of Commons Collections is already included as replacement. Customers are advised to upgrade to this version of the library. Please note: the package name was changed to org.apache.commons.collections4. Further note that there are AEM APIs currently exposing the old collections classes; these will be updated in upcoming releases.Decorates anotherSortedSetto provide additional behaviour.Methods are forwarded directly to the decorated set.
- Since:
- Commons Collections 3.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.Comparatorcomparator()Deprecated.java.lang.Objectfirst()Deprecated.java.util.SortedSetheadSet(java.lang.Object toElement)Deprecated.java.lang.Objectlast()Deprecated.java.util.SortedSetsubSet(java.lang.Object fromElement, java.lang.Object toElement)Deprecated.java.util.SortedSettailSet(java.lang.Object fromElement)Deprecated.-
Methods inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
-
-
-
-
Method Detail
-
subSet
public java.util.SortedSet subSet(java.lang.Object fromElement, java.lang.Object toElement)Deprecated.- Specified by:
subSetin interfacejava.util.SortedSet
-
headSet
public java.util.SortedSet headSet(java.lang.Object toElement)
Deprecated.- Specified by:
headSetin interfacejava.util.SortedSet
-
tailSet
public java.util.SortedSet tailSet(java.lang.Object fromElement)
Deprecated.- Specified by:
tailSetin interfacejava.util.SortedSet
-
first
public java.lang.Object first()
Deprecated.- Specified by:
firstin interfacejava.util.SortedSet
-
last
public java.lang.Object last()
Deprecated.- Specified by:
lastin interfacejava.util.SortedSet
-
comparator
public java.util.Comparator comparator()
Deprecated.- Specified by:
comparatorin interfacejava.util.SortedSet
-
-