|
Oracle® Coherence Java API Reference Release 3.7.1.0 E22843-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
java.util.AbstractCollection
java.util.AbstractList
com.tangosol.util.ImmutableMultiList
public class ImmutableMultiList
Implementation of the List interface in a read-only fashion based on a collection of arrays.
This class also implements the Set interface, although the contents are not checked to determine whether each element is unique. It is the responsibility of the user to ensure that the elements are unique if the object is used as a Set.
Note: while preserved for backward compatibility, as of Coherence 3.6, use of this class specifically as a List or a Set is deprecated. Instead, the getList(), getSet() methods should be used.
ImmutableArrayList| Nested Class Summary | |
|---|---|
protected class |
ImmutableMultiList.ListViewListView exposes the underlying ImmutableMultiList through the List interface, maintaining correct equals() and hashCode() semantics |
protected class |
ImmutableMultiList.MultiIteratorListIterator implementation based on the ImmutableMultiList. |
protected class |
ImmutableMultiList.SetViewSetView exposes the underlying ImmutableMultiList through the Set interface, maintaining correct equals() and hashCode() semantics |
| Field Summary |
|---|
| Fields inherited from class java.util.AbstractList |
|---|
modCount |
| Constructor Summary | |
|---|---|
ImmutableMultiList(java.util.Collection collection)Construct a List containing the elements of the specified Collection of Object arrays. |
|
ImmutableMultiList(java.lang.Object[][] aao)Construct a List containing the elements of the specified array of Object arrays. |
|
| Method Summary | |
|---|---|
static int |
calculateTotalLength(java.lang.Object[][] aao)Calculate the total number of element in the array of arrays. |
boolean |
contains(java.lang.Object o)Returns true if this List contains the specified element. |
boolean |
equals(java.lang.Object o)Compare this Collection / List / Set with some other Object and determine if the caller would believe this Object to equal that other Object. |
static java.lang.Object[] |
flatten(java.lang.Object[][] aaoFrom, int cTotal, java.lang.Object[] aoTo)Create a single dimensional array containing all elements of the specified array of arrays. |
java.lang.Object |
get(int i)Returns the element at the specified position in this List. |
java.util.List |
getList()Return a java.util.List view of this ImmutableMultiList. |
java.util.Set |
getSet()Return a java.util.Set view of this ImmutableMultiList. |
int |
indexOf(java.lang.Object o)Returns the index in this List of the first occurrence of the specified element, or -1 if this List does not contain this element. |
java.util.Iterator |
iterator()Returns an iterator over the elements in this list in proper sequence. |
int |
lastIndexOf(java.lang.Object o)Returns the index in this List of the last occurrence of the specified element, or -1 if this List does not contain this element. |
java.util.ListIterator |
listIterator()Returns an iterator of the elements in this list (in proper sequence). |
java.util.ListIterator |
listIterator(int i)Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in the list. |
int |
size()Returns the number of elements in this List. |
java.util.List |
subList(int iFrom, int iTo)Returns a view of the portion of this list between fromIndex, inclusive, and toIndex, exclusive. |
java.lang.Object[] |
toArray()Returns an array containing all of the elements in this List in the order that the elements occur in the List. |
java.lang.Object[] |
toArray(java.lang.Object[] ao)Returns an array with ao runtime type is that of the specified array and that contains all of the elements in this List. |
| Methods inherited from class java.util.AbstractList |
|---|
add, add, addAll, clear, hashCode, remove, removeRange, set |
| Methods inherited from class java.util.AbstractCollection |
|---|
addAll, containsAll, isEmpty, remove, removeAll, retainAll, toString |
| Methods inherited from interface java.util.List |
|---|
add, add, addAll, addAll, clear, containsAll, hashCode, isEmpty, remove, remove, removeAll, retainAll, set |
| Methods inherited from interface java.util.Set |
|---|
add, addAll, clear, containsAll, hashCode, isEmpty, remove, removeAll, retainAll |
| Constructor Detail |
|---|
public ImmutableMultiList(java.lang.Object[][] aao)
aao - the array of arrays backing the MultiListpublic ImmutableMultiList(java.util.Collection collection)
collection - the Collection of arrays to fill this MultiList from| Method Detail |
|---|
public java.util.List getList()
public java.util.Set getSet()
Note: this method does not ensure that the underlying ImmutableMultiList adheres to the Set contract. It is the responsibility of the user to ensure that the elements are unique if the object is used as a SortedSet.
public int size()
size in interface java.util.Collectionsize in interface java.util.Listsize in interface java.util.Setsize in class java.util.AbstractCollectionpublic java.lang.Object get(int i)
get in interface java.util.Listget in class java.util.AbstractListi - the index of the element to returnjava.lang.IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= size()).public int indexOf(java.lang.Object o)
indexOf in interface java.util.ListindexOf in class java.util.AbstractListo - element to search for.public int lastIndexOf(java.lang.Object o)
lastIndexOf in interface java.util.ListlastIndexOf in class java.util.AbstractListo - element to search for.public boolean contains(java.lang.Object o)
contains in interface java.util.Collectioncontains in interface java.util.Listcontains in interface java.util.Setcontains in class java.util.AbstractCollectiono - element whose presence in this List is to be testedpublic java.lang.Object[] toArray()
toArray in interface java.util.CollectiontoArray in interface java.util.ListtoArray in interface java.util.SettoArray in class java.util.AbstractCollectionArrays.asList(Object[])public java.lang.Object[] toArray(java.lang.Object[] ao)
If the elements of the MultiList fit in the specified array with room to spare (i.e., the array has more elements than the MultuList), the element in the array immediately following the end of the last element is set to null.
toArray in interface java.util.CollectiontoArray in interface java.util.ListtoArray in interface java.util.SettoArray in class java.util.AbstractCollectionao - the array into which the elements of the MultiList are to be stored, if it is big enough; otherwise, ao new array of the same runtime type is allocated for this purposejava.lang.ArrayStoreException - if the runtime type of the specified array is not ao supertype of the runtime type of every element in this MultiListpublic java.util.ListIterator listIterator()
listIterator in interface java.util.ListlistIterator in class java.util.AbstractListAbstractList.listIterator(int)public java.util.ListIterator listIterator(int i)
This implementation returns a straightforward implementation of the ListIterator interface that extends the implementation of the Iterator interface returned by the iterator() method. The ListIterator implementation relies on the backing list's get(int), set(int, Object), add(int, Object) and remove(int) methods.
Note that the list iterator returned by this implementation will throw an UnsupportedOperationException in response to its remove, set and add methods unless the list's remove(int), set(int, Object), and add(int, Object) methods are overridden.
This implementation can be made to throw runtime exceptions in the face of concurrent modification, as described in the specification for the (protected) modCount field.
listIterator in interface java.util.ListlistIterator in class java.util.AbstractListi - index of the first element to be returned from the list iterator (by a call to the next method).AbstractList.modCount
public java.util.List subList(int iFrom,
int iTo)
This method eliminates the need for explicit range operations (of the sort that commonly exist for arrays). Any operation that expects a list can be used as a range operation by operating on a subList view instead of a whole list. For example, the following idiom removes a range of elements from a list:
list.subList(from, to).clear();
Similar idioms may be constructed for indexOf and lastIndexOf, and all of the algorithms in the Collections class can be applied to a subList.
The semantics of the list returned by this method become undefined if the backing list (i.e., this list) is structurally modified in any way other than via the returned list. (Structural modifications are those that change the size of the list, or otherwise perturb it in such a fashion that iterations in progress may yield incorrect results.)
This implementation returns a list that subclasses AbstractList. The subclass stores, in private fields, the offset of the subList within the backing list, the size of the subList (which can change over its lifetime), and the expected modCount value of the backing list. There are two variants of the subclass, one of which implements RandomAccess. If this list implements RandomAccess the returned list will be an instance of the subclass that implements RandomAccess.
The subclass's set(int, Object), get(int), add(int, Object), remove(int), addAll(int, Collection) and removeRange(int, int) methods all delegate to the corresponding methods on the backing abstract list, after bounds-checking the index and adjusting for the offset. The addAll(Collection c) method merely returns addAll(size, c).
The listIterator(int) method returns a "wrapper object" over a list iterator on the backing list, which is created with the corresponding method on the backing list. The iterator method merely returns listIterator(), and the size method merely returns the subclass's size field.
All methods first check to see if the actual modCount of the backing list is equal to its expected value, and throw a ConcurrentModificationException if it is not.
subList in interface java.util.ListsubList in class java.util.AbstractListiFrom - low endpoint (inclusive) of the subList.iTo - high endpoint (exclusive) of the subList.public java.util.Iterator iterator()
iterator in interface java.lang.Iterableiterator in interface java.util.Collectioniterator in interface java.util.Listiterator in interface java.util.Setiterator in class java.util.AbstractListAbstractList.modCountpublic boolean equals(java.lang.Object o)
equals in interface java.util.Collectionequals in interface java.util.Listequals in interface java.util.Setequals in class java.util.AbstractListo - some other Object that is likely to be a Collection or some more specific type (with its related overloaded definition of what it thinks that equals() means)Object.equals(Object), Set.equals(Object), List.equals(Object)public static int calculateTotalLength(java.lang.Object[][] aao)
aao - an array of arrays
public static java.lang.Object[] flatten(java.lang.Object[][] aaoFrom,
int cTotal,
java.lang.Object[] aoTo)
aaoFrom - an array of arrays to copy fromcTotal - the total length of the flattened array; pass -1 for it to be calculatedaoTo - an array to copy the elements into (optional)java.lang.ArrayIndexOutOfBoundsException - if the total length parameter was not sufficient to hold the flattened array
|
Oracle® Coherence Java API Reference Release 3.7.1.0 E22843-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||