| 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 TByteList |
TCollections.synchronizedList(TByteList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TByteList |
TCollections.unmodifiableList(TByteList
Returns an unmodifiable view of the specified Trove primitive list.
|
| Modifier and Type | Method and Description |
|---|---|
static TByteList |
TCollections.synchronizedList(TByteList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TByteList |
TCollections.unmodifiableList(TByteList
Returns an unmodifiable view of the specified Trove primitive list.
|
static List |
TDecorators.wrap(TByteList
Wrap the given list in a decorator that uses the standard
List interface.
|
| Modifier and Type | Field and Description |
|---|---|
protected TByteList |
TByteListDecorator.list
the wrapped primitive list
|
| Modifier and Type | Method and Description |
|---|---|
TByteList |
TByteListDecorator.getList()
Returns a reference to the list wrapped by this decorator.
|
| Constructor and Description | |
|---|---|
TByteListDecorator(TByteList
Creates a wrapper that decorates the specified primitive map.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TSynchronizedByteList
|
class |
TSynchronizedRandomAccessByteList
|
| Modifier and Type | Method and Description |
|---|---|
TByteList |
TSynchronizedByteList.grep(TByteProcedure
|
TByteList |
TSynchronizedByteList.inverseGrep(TByteProcedure
|
TByteList |
TSynchronizedByteList.subList(int fromIndex, int toIndex)
|
TByteList |
TSynchronizedRandomAccessByteList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TSynchronizedByteList(TByteList
|
|
TSynchronizedByteList(TByteList
|
|
TSynchronizedRandomAccessByteList(TByteList
|
|
TSynchronizedRandomAccessByteList(TByteList
|
| Modifier and Type | Class and Description |
|---|---|
class |
TUnmodifiableByteList
|
class |
TUnmodifiableRandomAccessByteList
|
| Modifier and Type | Method and Description |
|---|---|
TByteList |
TUnmodifiableByteList.grep(TByteProcedure
|
TByteList |
TUnmodifiableByteList.inverseGrep(TByteProcedure
|
TByteList |
TUnmodifiableRandomAccessByteList.subList(int fromIndex, int toIndex)
|
TByteList |
TUnmodifiableByteList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TUnmodifiableByteList(TByteList
|
|
TUnmodifiableRandomAccessByteList(TByteList
|
| Modifier and Type | Method and Description |
|---|---|
TByteList |
TByteList.grep(TByteProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TByteList |
TByteList.inverseGrep(TByteProcedure
Searches the list for values which do
not satisfy
condition.
|
TByteList |
TByteList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TByteArrayList
A resizable, array-backed list of byte primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TByteList |
TByteArrayList.grep(TByteProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TByteList |
TByteArrayList.inverseGrep(TByteProcedure
Searches the list for values which do
not satisfy
condition.
|
TByteList |
TByteArrayList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TByteLinkedList
A resizable, double linked list of byte primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TByteList |
TByteLinkedList.grep(TByteProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TByteList |
TByteLinkedList.inverseGrep(TByteProcedure
Searches the list for values which do
not satisfy
condition.
|
TByteList |
TByteLinkedList.subList(int begin, int end)
Returns a sublist of this list.
|
| Constructor and Description | |
|---|---|
TByteLinkedList(TByteList
|