| Package | Description |
|---|---|
| gnu.trove | |
| gnu.trove.decorator | |
| gnu.trove.impl.sync | |
| gnu.trove.impl.unmodifiable | |
| gnu.trove.list | |
| gnu.trove.list.array | |
| gnu.trove.list.linked |
| Modifier and Type | Method and Description |
|---|---|
static TCharList |
TCollections.synchronizedList(TCharList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TCharList |
TCollections.unmodifiableList(TCharList
Returns an unmodifiable view of the specified Trove primitive list.
|
| Modifier and Type | Method and Description |
|---|---|
static TCharList |
TCollections.synchronizedList(TCharList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TCharList |
TCollections.unmodifiableList(TCharList
Returns an unmodifiable view of the specified Trove primitive list.
|
static List |
TDecorators.wrap(TCharList
Wrap the given list in a decorator that uses the standard
List interface.
|
| Modifier and Type | Field and Description |
|---|---|
protected TCharList |
TCharListDecorator.list
the wrapped primitive list
|
| Modifier and Type | Method and Description |
|---|---|
TCharList |
TCharListDecorator.getList()
Returns a reference to the list wrapped by this decorator.
|
| Constructor and Description | |
|---|---|
TCharListDecorator(TCharList
Creates a wrapper that decorates the specified primitive map.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TSynchronizedCharList
|
class |
TSynchronizedRandomAccessCharList
|
| Modifier and Type | Method and Description |
|---|---|
TCharList |
TSynchronizedCharList.grep(TCharProcedure
|
TCharList |
TSynchronizedCharList.inverseGrep(TCharProcedure
|
TCharList |
TSynchronizedCharList.subList(int fromIndex, int toIndex)
|
TCharList |
TSynchronizedRandomAccessCharList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TSynchronizedCharList(TCharList
|
|
TSynchronizedCharList(TCharList
|
|
TSynchronizedRandomAccessCharList(TCharList
|
|
TSynchronizedRandomAccessCharList(TCharList
|
| Modifier and Type | Class and Description |
|---|---|
class |
TUnmodifiableCharList
|
class |
TUnmodifiableRandomAccessCharList
|
| Modifier and Type | Method and Description |
|---|---|
TCharList |
TUnmodifiableCharList.grep(TCharProcedure
|
TCharList |
TUnmodifiableCharList.inverseGrep(TCharProcedure
|
TCharList |
TUnmodifiableRandomAccessCharList.subList(int fromIndex, int toIndex)
|
TCharList |
TUnmodifiableCharList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TUnmodifiableCharList(TCharList
|
|
TUnmodifiableRandomAccessCharList(TCharList
|
| Modifier and Type | Method and Description |
|---|---|
TCharList |
TCharList.grep(TCharProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TCharList |
TCharList.inverseGrep(TCharProcedure
Searches the list for values which do
not satisfy
condition.
|
TCharList |
TCharList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TCharArrayList
A resizable, array-backed list of char primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TCharList |
TCharArrayList.grep(TCharProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TCharList |
TCharArrayList.inverseGrep(TCharProcedure
Searches the list for values which do
not satisfy
condition.
|
TCharList |
TCharArrayList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TCharLinkedList
A resizable, double linked list of char primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TCharList |
TCharLinkedList.grep(TCharProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TCharList |
TCharLinkedList.inverseGrep(TCharProcedure
Searches the list for values which do
not satisfy
condition.
|
TCharList |
TCharLinkedList.subList(int begin, int end)
Returns a sublist of this list.
|
| Constructor and Description | |
|---|---|
TCharLinkedList(TCharList
|