|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectit.unimi.dsi.fastutil.shorts.ShortSortedSets
A class providing static methods and objects that do useful things with type-specific sorted sets.
SortedSets
,
Collections
Nested Class Summary | |
static class |
ShortSortedSets.Singleton
A class representing a singleton sorted set. |
static class |
ShortSortedSets.SynchronizedSortedSet
A synchronized wrapper class for sorted sets. |
Method Summary | |
static ShortSortedSet |
singleton(Object element)
Returns a type-specific immutable sorted set containing only the specified element. |
static ShortSortedSet |
singleton(Object element,
ShortComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator. |
static ShortSortedSet |
singleton(short element)
Returns a type-specific immutable sorted set containing only the specified element. |
static ShortSortedSet |
singleton(short element,
ShortComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator. |
static ShortSortedSet |
synchronize(ShortSortedSet s)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set. |
static ShortSortedSet |
synchronize(ShortSortedSet s,
Object sync)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set, using an assigned object to synchronize. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static ShortSortedSet singleton(short element)
element
- the only element of the returned sorted set.
element
.public static ShortSortedSet singleton(short element, ShortComparator comparator)
element
- the only element of the returned sorted set.comparator
- the comparator to use in the returned sorted set.
element
.public static ShortSortedSet singleton(Object element)
element
- the only element of the returned sorted set.
element
.public static ShortSortedSet singleton(Object element, ShortComparator comparator)
element
- the only element of the returned sorted set.comparator
- the comparator to use in the returned sorted set.
element
.public static ShortSortedSet synchronize(ShortSortedSet s)
s
- the sorted set to be wrapped in a synchronized sorted set.
Collections.synchronizedSortedSet(SortedSet)
public static ShortSortedSet synchronize(ShortSortedSet 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)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |