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