|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectit.unimi.dsi.fastutil.floats.FloatSortedSets
public class FloatSortedSets
A class providing static methods and objects that do useful things with type-specific sorted sets.
Collections| Nested Class Summary | |
|---|---|
static class |
FloatSortedSets.EmptySet
An immutable class representing the empty sorted set and implementing a type-specific set interface. |
static class |
FloatSortedSets.Singleton
A class representing a singleton sorted set. |
static class |
FloatSortedSets.SynchronizedSortedSet
A synchronized wrapper class for sorted sets. |
static class |
FloatSortedSets.UnmodifiableSortedSet
An unmodifiable wrapper class for sorted sets. |
| Field Summary | |
|---|---|
static FloatSortedSets.EmptySet |
EMPTY_SET
An empty sorted set (immutable). |
| Method Summary | |
|---|---|
static FloatSortedSet |
singleton(float element)
Returns a type-specific immutable sorted set containing only the specified element. |
static FloatSortedSet |
singleton(float element,
FloatComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator. |
static FloatSortedSet |
singleton(Object element)
Returns a type-specific immutable sorted set containing only the specified element. |
static FloatSortedSet |
singleton(Object element,
FloatComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator. |
static FloatSortedSet |
synchronize(FloatSortedSet s)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set. |
static FloatSortedSet |
synchronize(FloatSortedSet 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 FloatSortedSet |
unmodifiable(FloatSortedSet s)
Returns an unmodifiable type-specific sorted set backed by the given type-specific sorted set. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final FloatSortedSets.EmptySet EMPTY_SET
The class of this objects represent an abstract empty set that is a subset of a (sorted) type-specific set.
| Method Detail |
|---|
public static FloatSortedSet singleton(float element)
element - the only element of the returned sorted set.
element.
public static FloatSortedSet singleton(float element,
FloatComparator comparator)
element - the only element of the returned sorted set.comparator - the comparator to use in the returned sorted set.
element.public static FloatSortedSet singleton(Object element)
element - the only element of the returned sorted set.
element.
public static FloatSortedSet singleton(Object element,
FloatComparator comparator)
element - the only element of the returned sorted set.comparator - the comparator to use in the returned sorted set.
element.public static FloatSortedSet synchronize(FloatSortedSet s)
s - the sorted set to be wrapped in a synchronized sorted set.
Collections.synchronizedSortedSet(SortedSet)
public static FloatSortedSet synchronize(FloatSortedSet 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 FloatSortedSet unmodifiable(FloatSortedSet s)
s - the sorted set to be wrapped in an unmodifiable sorted set.
Collections.unmodifiableSortedSet(SortedSet)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||