public class DoubleSortedSets extends Object
Collections
Modifier and Type | Class and Description |
---|---|
static class |
DoubleSortedSets.EmptySet
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
static class |
DoubleSortedSets.Singleton
A class representing a singleton sorted set.
|
static class |
DoubleSortedSets.SynchronizedSortedSet
A synchronized wrapper class for sorted sets.
|
static class |
DoubleSortedSets.UnmodifiableSortedSet
An unmodifiable wrapper class for sorted sets.
|
Modifier and Type | Field and Description |
---|---|
static DoubleSortedSets.EmptySet |
EMPTY_SET
An empty sorted set (immutable).
|
Modifier and Type | Method and Description |
---|---|
static DoubleSortedSet |
singleton(double element)
Returns a type-specific immutable sorted set containing only the specified element.
|
static DoubleSortedSet |
singleton(double element,
DoubleComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
|
static DoubleSortedSet |
singleton(Object element)
Returns a type-specific immutable sorted set containing only the specified element.
|
static DoubleSortedSet |
singleton(Object element,
DoubleComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
|
static DoubleSortedSet |
synchronize(DoubleSortedSet s)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set.
|
static DoubleSortedSet |
synchronize(DoubleSortedSet s,
Object sync)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set, using an assigned object to synchronize.
|
static DoubleSortedSet |
unmodifiable(DoubleSortedSet s)
Returns an unmodifiable type-specific sorted set backed by the given type-specific sorted set.
|
public static final DoubleSortedSets.EmptySet EMPTY_SET
The class of this objects represent an abstract empty set that is a subset of a (sorted) type-specific set.
public static DoubleSortedSet singleton(double element)
element
- the only element of the returned sorted set.element
.public static DoubleSortedSet singleton(double element, DoubleComparator comparator)
element
- the only element of the returned sorted set.comparator
- the comparator to use in the returned sorted set.element
.public static DoubleSortedSet singleton(Object element)
element
- the only element of the returned sorted set.element
.public static DoubleSortedSet singleton(Object element, DoubleComparator comparator)
element
- the only element of the returned sorted set.comparator
- the comparator to use in the returned sorted set.element
.public static DoubleSortedSet synchronize(DoubleSortedSet s)
s
- the sorted set to be wrapped in a synchronized sorted set.Collections.synchronizedSortedSet(SortedSet)
public static DoubleSortedSet synchronize(DoubleSortedSet s, 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 DoubleSortedSet unmodifiable(DoubleSortedSet s)
s
- the sorted set to be wrapped in an unmodifiable sorted set.Collections.unmodifiableSortedSet(SortedSet)