Modifier and Type | Method and Description |
---|---|
ReifiedList<T> |
IValueStore.toList()
Puts all elements in an array and returns them.
|
Modifier and Type | Method and Description |
---|---|
ReifiedList<T> |
SharedBuffer.toList()
Puts all elements in a list copy and returns them.
|
ReifiedList<T> |
LRUBuffer.toList()
Puts all elements in a list copy and returns them.
|
ReifiedList<T> |
IBuffer.toList()
Puts all elements in a list and returns them.
|
ReifiedList<T> |
CircularBuffer.toList()
Puts all elements in a list copy and returns them.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ISharedList<T>
A type-aware thread-safe list interface
|
Modifier and Type | Class and Description |
---|---|
class |
ReifiedArrayList<T>
A type-aware array-backed list that uses similar semantics and strategy to the java.util.ArrayList.
|
class |
ReifiedLinkedList<T>
A type-aware linked list.
|
class |
SharedList<T>
An type-aware array-backed thread-safe list.
|
Modifier and Type | Method and Description |
---|---|
ReifiedList<T> |
SharedList.subList(int fromIndex,
int toIndex)
Creates a sub-list from this list.
|
ReifiedList<T> |
ReifiedList.subList(int fromIndex,
int toIndex)
Creates a sub-list from this list.
|
ReifiedList<T> |
ReifiedLinkedList.subList(int fromIndex,
int toIndex)
Creates a sub-list from this list.
|
ReifiedList<T> |
ReifiedArrayList.subList(int fromIndex,
int toIndex)
Creates a sub-list from this list.
|
ReifiedList<T> |
SharedList.toList()
Returns a copy of this list.
|
ReifiedList<T> |
ReifiedLinkedList.toList()
Returns a copy of this list.
|
ReifiedList<T> |
ReifiedArrayList.toList()
Returns a copy of this list.
|
ReifiedList<T> |
ISharedList.toList()
Returns all elements as a list.
|
Modifier and Type | Method and Description |
---|---|
ReifiedList<TValue> |
ValueCollection.toList()
Returns the key of all key/value pairs, in ascending key order.
|
ReifiedList<TKey> |
KeyCollection.toList()
Returns the key of all key/value pairs, in ascending key order.
|
Modifier and Type | Method and Description |
---|---|
ReifiedList<T> |
SharedQueue.toList()
Puts all elements in a list and returns them.
|
ReifiedList<T> |
ISharedQueue.toList()
Puts all elements in a list and returns them.
|
Modifier and Type | Method and Description |
---|---|
ReifiedList<T> |
SharedAvlTreeSet.toList()
Puts all elements in a list and returns them.
|
ReifiedList<T> |
AvlTreeSet.toList()
Puts all elements in a list and returns them.
|
Modifier and Type | Method and Description |
---|---|
ReifiedList<T> |
SharedStack.toList()
Puts all elements in a list and returns them.
|
ReifiedList<T> |
ISharedStack.toList()
Puts all elements in a list and returns them
|
Modifier and Type | Method and Description |
---|---|
ReifiedList<T> |
ValueSessionStore.toList()
Puts all elements in a list and returns them.
|
Modifier and Type | Method and Description |
---|---|
static <T> Functions.Function1<T[],ReifiedList<T>> |
Arrays.asReifiedList()
Returns the array as a reified list
|
Modifier and Type | Method and Description |
---|---|
static <TKey extends java.lang.Comparable<TKey>,TResult> |
Linq.orderBy(java.lang.Iterable<TResult> values,
Functions.Function1<? super TResult,TKey> keySelector,
java.util.Comparator<? super TKey> comparer)
Orders a sequence by a specified key.
|
static <T> ReifiedList<T> |
Linq.reverse(ReifiedIterable<T> values)
Returns a reversed version of the provided sequence
|
static <T extends java.lang.Comparable<T>> |
Linq.sort(ReifiedIterable<T> values)
Sorts a sequence.
|
static <T> ReifiedList<T> |
Linq.toList(java.util.Enumeration<T> enumeration,
java.lang.Class<?> genericTypeParameter)
Converts an enumeration to a list
|
static <T> ReifiedList<T> |
Linq.toList(java.lang.Iterable<T> values,
java.lang.Class<?> genericTypeParameter)
Converts an iterable to a list
|
static <T> ReifiedList<T> |
Linq.toList(ReifiedIterable<T> values)
Converts an iterable to a list
|
static <T> ReifiedList<T> |
Linq.toList(T[] values)
Converts an array to a list
|
static <T> ReifiedList<T> |
ArrayUtils.toList(T[] array)
Converts an array to a list.
|
static <T> ReifiedList<T> |
ImmutableUtils.toReadOnly(ReifiedList<T> list)
Returns a read-only version of the given collection
|
Modifier and Type | Method and Description |
---|---|
static <T> T[] |
Linq.toArray(ReifiedList<T> list)
Converts a list to an array.
|
static <T> ReifiedList<T> |
ImmutableUtils.toReadOnly(ReifiedList<T> list)
Returns a read-only version of the given collection
|
Modifier and Type | Method and Description |
---|---|
static <TSource,TResult> |
Linq.selectMany(TSource[] values,
Functions.Function1<TSource,ReifiedList<TResult>> selector)
Acts as a SelectMany LINQ function, to allow selection of iterables and return all their sub-items.
|