public class TransformedSortedSet extends TransformedSet implements java.util.SortedSet
SortedSet
to transform objects that are added.
The add methods are affected by this class. Thus objects must be removed or searched for using their transformed form. For example, if the transformation converts Strings to Integers, you must use the Integer form to remove objects.
This class is Serializable from Commons Collections 3.1.
Modifier and Type | Method and Description |
---|---|
java.util.Comparator |
comparator() |
static java.util.SortedSet |
decorate(java.util.SortedSet set,
Transformer transformer)
Factory method to create a transforming sorted set.
|
java.lang.Object |
first() |
java.util.SortedSet |
headSet(java.lang.Object toElement) |
java.lang.Object |
last() |
java.util.SortedSet |
subSet(java.lang.Object fromElement,
java.lang.Object toElement) |
java.util.SortedSet |
tailSet(java.lang.Object fromElement) |
decorate
add, addAll, decorate
clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
public static java.util.SortedSet decorate(java.util.SortedSet set, Transformer transformer)
If there are any elements already in the set being decorated, they are NOT transformed.
set
- the set to decorate, must not be nulltransformer
- the transformer to use for conversion, must not be nulljava.lang.IllegalArgumentException
- if set or transformer is nullpublic java.lang.Object first()
first
in interface java.util.SortedSet
public java.lang.Object last()
last
in interface java.util.SortedSet
public java.util.Comparator comparator()
comparator
in interface java.util.SortedSet
public java.util.SortedSet subSet(java.lang.Object fromElement, java.lang.Object toElement)
subSet
in interface java.util.SortedSet
public java.util.SortedSet headSet(java.lang.Object toElement)
headSet
in interface java.util.SortedSet
public java.util.SortedSet tailSet(java.lang.Object fromElement)
tailSet
in interface java.util.SortedSet
Copyright © 2010 - 2023 Adobe. All Rights Reserved