public final class ByteSortedSets
extends java.lang.Object
Collections| Modifier and Type | Class | Description |
|---|---|---|
static class |
ByteSortedSets.EmptySet |
An immutable class representing the empty sorted set and implementing a
type-specific set interface.
|
static class |
ByteSortedSets.Singleton |
A class representing a singleton sorted set.
|
static class |
ByteSortedSets.SynchronizedSortedSet |
A synchronized wrapper class for sorted sets.
|
static class |
ByteSortedSets.UnmodifiableSortedSet |
An unmodifiable wrapper class for sorted sets.
|
| Modifier and Type | Field | Description |
|---|---|---|
static ByteSortedSets.EmptySet |
EMPTY_SET |
An empty sorted set (immutable).
|
| Modifier and Type | Method | Description |
|---|---|---|
static ByteSortedSet |
singleton(byte element) |
Returns a type-specific immutable sorted set containing only the specified
element.
|
static ByteSortedSet |
singleton(byte element,
ByteComparator comparator) |
Returns a type-specific immutable sorted set containing only the specified
element, and using a specified comparator.
|
static ByteSortedSet |
singleton(java.lang.Object element) |
Returns a type-specific immutable sorted set containing only the specified
element.
|
static ByteSortedSet |
singleton(java.lang.Object element,
ByteComparator comparator) |
Returns a type-specific immutable sorted set containing only the specified
element, and using a specified comparator.
|
static ByteSortedSet |
synchronize(ByteSortedSet s) |
Returns a synchronized type-specific sorted set backed by the given
type-specific sorted set.
|
static ByteSortedSet |
synchronize(ByteSortedSet 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 ByteSortedSet |
unmodifiable(ByteSortedSet s) |
Returns an unmodifiable type-specific sorted set backed by the given
type-specific sorted set.
|
public static final ByteSortedSets.EmptySet EMPTY_SET
public static ByteSortedSet singleton(byte element)
element - the only element of the returned sorted set.element.public static ByteSortedSet singleton(byte element, ByteComparator comparator)
element - the only element of the returned sorted set.comparator - the comparator to use in the returned sorted set.element.public static ByteSortedSet singleton(java.lang.Object element)
element - the only element of the returned sorted set.element.public static ByteSortedSet singleton(java.lang.Object element, ByteComparator comparator)
element - the only element of the returned sorted set.comparator - the comparator to use in the returned sorted set.element.public static ByteSortedSet synchronize(ByteSortedSet s)
s - the sorted set to be wrapped in a synchronized sorted set.Collections.synchronizedSortedSet(SortedSet)public static ByteSortedSet synchronize(ByteSortedSet 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 ByteSortedSet unmodifiable(ByteSortedSet s)
s - the sorted set to be wrapped in an unmodifiable sorted set.Collections.unmodifiableSortedSet(SortedSet)