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