public final class ByteCollections
extends java.lang.Object
Collections| Modifier and Type | Class | Description |
|---|---|---|
static class |
ByteCollections.EmptyCollection |
An immutable class representing an empty type-specific collection.
|
static class |
ByteCollections.IterableCollection |
A collection wrapper class for iterables.
|
static class |
ByteCollections.SynchronizedCollection |
A synchronized wrapper class for collections.
|
static class |
ByteCollections.UnmodifiableCollection |
An unmodifiable wrapper class for collections.
|
| Modifier and Type | Method | Description |
|---|---|---|
static ByteCollection |
asCollection(ByteIterable iterable) |
Returns an unmodifiable collection backed by the specified iterable.
|
static ByteCollection |
synchronize(ByteCollection c) |
Returns a synchronized collection backed by the specified collection.
|
static ByteCollection |
synchronize(ByteCollection c,
java.lang.Object sync) |
Returns a synchronized collection backed by the specified collection, using
an assigned object to synchronize.
|
static ByteCollection |
unmodifiable(ByteCollection c) |
Returns an unmodifiable collection backed by the specified collection.
|
public static ByteCollection synchronize(ByteCollection c)
c - the collection to be wrapped in a synchronized collection.Collections.synchronizedCollection(Collection)public static ByteCollection synchronize(ByteCollection 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 ByteCollection unmodifiable(ByteCollection c)
c - the collection to be wrapped in an unmodifiable collection.Collections.unmodifiableCollection(Collection)public static ByteCollection asCollection(ByteIterable iterable)
iterable - the iterable object to be wrapped in an unmodifiable collection.