Package it.unimi.dsi.fastutil.floats
Class FloatCollections
- java.lang.Object
-
- it.unimi.dsi.fastutil.floats.FloatCollections
-
public final class FloatCollections extends Object
A class providing static methods and objects that do useful things with type-specific collections.- See Also:
Collections
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FloatCollections.EmptyCollection
An immutable class representing an empty type-specific collection.static class
FloatCollections.IterableCollection
A collection wrapper class for iterables.static class
FloatCollections.SynchronizedCollection
A synchronized wrapper class for collections.static class
FloatCollections.UnmodifiableCollection
An unmodifiable wrapper class for collections.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FloatCollection
asCollection(FloatIterable iterable)
Returns an unmodifiable collection backed by the specified iterable.static FloatCollection
synchronize(FloatCollection c)
Returns a synchronized collection backed by the specified collection.static FloatCollection
synchronize(FloatCollection c, Object sync)
Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.static FloatCollection
unmodifiable(FloatCollection c)
Returns an unmodifiable collection backed by the specified collection.
-
-
-
Method Detail
-
synchronize
public static FloatCollection synchronize(FloatCollection c)
Returns a synchronized collection backed by the specified collection.- Parameters:
c
- the collection to be wrapped in a synchronized collection.- Returns:
- a synchronized view of the specified collection.
- See Also:
Collections.synchronizedCollection(Collection)
-
synchronize
public static FloatCollection synchronize(FloatCollection c, Object sync)
Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.- Parameters:
c
- the collection to be wrapped in a synchronized collection.sync
- an object that will be used to synchronize the list access.- Returns:
- a synchronized view of the specified collection.
- See Also:
Collections.synchronizedCollection(Collection)
-
unmodifiable
public static FloatCollection unmodifiable(FloatCollection c)
Returns an unmodifiable collection backed by the specified collection.- Parameters:
c
- the collection to be wrapped in an unmodifiable collection.- Returns:
- an unmodifiable view of the specified collection.
- See Also:
Collections.unmodifiableCollection(Collection)
-
asCollection
public static FloatCollection asCollection(FloatIterable iterable)
Returns an unmodifiable collection backed by the specified iterable.- Parameters:
iterable
- the iterable object to be wrapped in an unmodifiable collection.- Returns:
- an unmodifiable collection view of the specified iterable.
-
-