public final class ReferenceSortedSets
extends java.lang.Object
Collections| Modifier and Type | Class | Description |
|---|---|---|
static class |
ReferenceSortedSets.EmptySet<K> |
An immutable class representing the empty sorted set and implementing a
type-specific set interface.
|
static class |
ReferenceSortedSets.Singleton<K> |
A class representing a singleton sorted set.
|
static class |
ReferenceSortedSets.SynchronizedSortedSet<K> |
A synchronized wrapper class for sorted sets.
|
static class |
ReferenceSortedSets.UnmodifiableSortedSet<K> |
An unmodifiable wrapper class for sorted sets.
|
| Modifier and Type | Field | Description |
|---|---|---|
static ReferenceSortedSets.EmptySet |
EMPTY_SET |
An empty sorted set (immutable).
|
| Modifier and Type | Method | Description |
|---|---|---|
static <K> ReferenceSet<K> |
emptySet() |
Returns an empty sorted set (immutable).
|
static <K> ReferenceSortedSet<K> |
singleton(K element) |
Returns a type-specific immutable sorted set containing only the specified
element.
|
static <K> ReferenceSortedSet<K> |
singleton(K element,
java.util.Comparator<? super K> comparator) |
Returns a type-specific immutable sorted set containing only the specified
element, and using a specified comparator.
|
static <K> ReferenceSortedSet<K> |
synchronize(ReferenceSortedSet<K> s) |
Returns a synchronized type-specific sorted set backed by the given
type-specific sorted set.
|
static <K> ReferenceSortedSet<K> |
synchronize(ReferenceSortedSet<K> s,
java.lang.Object sync) |
Returns a synchronized type-specific sorted set backed by the given
type-specific sorted set, using an assigned object to synchronize.
|
static <K> ReferenceSortedSet<K> |
unmodifiable(ReferenceSortedSet<K> s) |
Returns an unmodifiable type-specific sorted set backed by the given
type-specific sorted set.
|
public static final ReferenceSortedSets.EmptySet EMPTY_SET
public static <K> ReferenceSet<K> emptySet()
This method provides a typesafe access to EMPTY_SET.
public static <K> ReferenceSortedSet<K> singleton(K element)
element - the only element of the returned sorted set.element.public static <K> ReferenceSortedSet<K> singleton(K element, java.util.Comparator<? super K> comparator)
element - the only element of the returned sorted set.comparator - the comparator to use in the returned sorted set.element.public static <K> ReferenceSortedSet<K> synchronize(ReferenceSortedSet<K> s)
s - the sorted set to be wrapped in a synchronized sorted set.Collections.synchronizedSortedSet(SortedSet)public static <K> ReferenceSortedSet<K> synchronize(ReferenceSortedSet<K> s, java.lang.Object sync)
s - the sorted set to be wrapped in a synchronized sorted set.sync - an object that will be used to synchronize the access to the
sorted set.Collections.synchronizedSortedSet(SortedSet)public static <K> ReferenceSortedSet<K> unmodifiable(ReferenceSortedSet<K> s)
s - the sorted set to be wrapped in an unmodifiable sorted set.Collections.unmodifiableSortedSet(SortedSet)