|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of Array in net.sf.sido.array |
|---|
| Subclasses of Array in net.sf.sido.array | |
|---|---|
class |
IndexedArray<T,K>
Array sub-class that indexes its elements using an indexer function |
| Methods in net.sf.sido.array that return Array | ||
|---|---|---|
Array<T> |
Array.add(Array<T> elements)
Appends elements |
|
Array<T> |
Array.add(Collection<T> elements)
Appends elements |
|
Array<T> |
Array.add(T... elements)
Appends elements |
|
protected Array<T> |
IndexedArray.createNewArray(List<T> newList,
ArrayEvent<T> tArrayEvent)
Creation of an IndexedArray by update/add/delete operations. |
|
protected Array<T> |
Array.createNewArray(List<T> newList,
ArrayEvent<T> event)
Creates a new instance of an array |
|
Array<T> |
Array.delete(int... indexes)
Deletes one or several elements using their indexes. |
|
static
|
Array.empty()
Creates an empty array. |
|
Array<T> |
Array.filter(com.google.common.base.Predicate<T> predicate)
Filters the array using a predicate |
|
Array<K> |
IndexedArray.getKeyArray()
Returns all keys as an array |
|
Array<T> |
Array.insert(int position,
Collection<T> elements)
Appends elements at a given position |
|
Array<T> |
Array.insert(int position,
T... items)
Appends elements at a given position |
|
Array<T> |
Array.reverse()
Creates a reversed version of this array |
|
Array<T> |
Array.sub(int startIndex,
int endIndex)
Sub array using a range between two indexes. |
|
Array<Integer> |
Range.toArray()
Converts this range into an Array of Integer that contains all the indexes defined by this range. |
|
static Array<Integer> |
Range.toArray(int from,
int to)
Utility method that creates an Array from a range. |
|
static
|
Range.toArray(int from,
int to,
com.google.common.base.Function<Integer,T> creator)
Utility method that creates an Array from a range. |
|
|
Array.transform(com.google.common.base.Function<? super T,V> transform)
Transforms an array in another array. |
|
Array<T> |
Array.update(int index,
T newElement)
Updates an element with a new value |
|
| Methods in net.sf.sido.array with parameters of type Array | |
|---|---|
IndexedArray<T,K> |
IndexedArray.add(Array<T> elements)
|
Array<T> |
Array.add(Array<T> elements)
Appends elements |
| Constructors in net.sf.sido.array with parameters of type Array | |
|---|---|
IndexedArray(com.google.common.base.Function<? super T,K> indexer,
Array<T> elements)
Builds an indexed array from another array. |
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||