|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectit.unimi.dsi.fastutil.doubles.DoubleCollections
public class DoubleCollections
A class providing static methods and objects that do useful things with type-specific collections.
Collections
Nested Class Summary | |
---|---|
static class |
DoubleCollections.EmptyCollection
An immutable class representing an empty type-specific collection. |
static class |
DoubleCollections.IterableCollection
A collection wrapper class for iterables. |
static class |
DoubleCollections.SynchronizedCollection
A synchronized wrapper class for collections. |
static class |
DoubleCollections.UnmodifiableCollection
An unmodifiable wrapper class for collections. |
Method Summary | |
---|---|
static DoubleCollection |
asCollection(DoubleIterable iterable)
Returns an unmodifiable collection backed by the specified iterable. |
static DoubleCollection |
synchronize(DoubleCollection c)
Returns a synchronized collection backed by the specified collection. |
static DoubleCollection |
synchronize(DoubleCollection c,
java.lang.Object sync)
Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize. |
static DoubleCollection |
unmodifiable(DoubleCollection c)
Returns an unmodifiable collection backed by the specified collection. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static DoubleCollection synchronize(DoubleCollection c)
c
- the collection to be wrapped in a synchronized collection.
Collections.synchronizedCollection(Collection)
public static DoubleCollection synchronize(DoubleCollection c, java.lang.Object sync)
c
- the collection to be wrapped in a synchronized collection.sync
- an object that will be used to synchronize the list access.
Collections.synchronizedCollection(Collection)
public static DoubleCollection unmodifiable(DoubleCollection c)
c
- the collection to be wrapped in an unmodifiable collection.
Collections.unmodifiableCollection(Collection)
public static DoubleCollection asCollection(DoubleIterable iterable)
iterable
- the iterable object to be wrapped in an unmodifiable collection.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |