public class FloatCollections extends Object
Collections
Modifier and Type | Class and 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.
|
Modifier and Type | Method and 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.
|
public static FloatCollection synchronize(FloatCollection c)
c
- the collection to be wrapped in a synchronized collection.Collections.synchronizedCollection(Collection)
public static FloatCollection synchronize(FloatCollection c, 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 FloatCollection unmodifiable(FloatCollection c)
c
- the collection to be wrapped in an unmodifiable collection.Collections.unmodifiableCollection(Collection)
public static FloatCollection asCollection(FloatIterable iterable)
iterable
- the iterable object to be wrapped in an unmodifiable collection.