Package it.unimi.dsi.fastutil.ints
Class IntCollections
- java.lang.Object
-
- it.unimi.dsi.fastutil.ints.IntCollections
-
public final class IntCollections 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 classIntCollections.EmptyCollectionAn immutable class representing an empty type-specific collection.static classIntCollections.IterableCollectionA collection wrapper class for iterables.static classIntCollections.SynchronizedCollectionA synchronized wrapper class for collections.static classIntCollections.UnmodifiableCollectionAn unmodifiable wrapper class for collections.
-
Method Summary
Modifier and Type Method Description static IntCollectionasCollection(IntIterable iterable)Returns an unmodifiable collection backed by the specified iterable.static IntCollectionsynchronize(IntCollection c)Returns a synchronized collection backed by the specified collection.static IntCollectionsynchronize(IntCollection c, Object sync)Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.static IntCollectionunmodifiable(IntCollection c)Returns an unmodifiable collection backed by the specified collection.
-
-
-
Method Detail
-
synchronize
public static IntCollection synchronize(IntCollection 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 IntCollection synchronize(IntCollection 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 IntCollection unmodifiable(IntCollection 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 IntCollection asCollection(IntIterable 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.
-
-