CoherenceTM v3.3
Copyright© 2000-2007 by Oracle Corporation

com.tangosol.util
Class ImmutableArrayList

java.lang.Object
  extended by java.util.AbstractCollection
      extended by java.util.AbstractList
          extended by com.tangosol.util.ImmutableArrayList
All Implemented Interfaces:
Serializable, Cloneable, Comparable, Iterable, Collection, List, Set, SortedSet

public class ImmutableArrayList
extends AbstractList
implements Collection, List, Set, SortedSet, Comparable, Cloneable, Serializable

Implementation of the Collection Framework interface "List" in a read- only fashion on top of an array data structure.

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.

Author:
cp 2001.10.09

Field Summary
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
ImmutableArrayList(Collection collection)
          Construct a List containing the elements of the specified Collection.
ImmutableArrayList(Object[] ao)
          Construct a List from an Array.
 
Method Summary
 Object clone()
          Create a clone of the ImmutableArrayList.
 Comparator comparator()
          Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.
 int compareTo(Object o)
          Compare this ImmutableArrayList with the passed Object to determine order.
 boolean contains(Object o)
          Returns true if this List contains the specified element.
 boolean equals(Object o)
          Compare this Collection / List / Set / SortedSet with some other Object and determine if the caller would believe this Object to equal that other Object.
 Object first()
          Returns the first element currently in this sorted set.
 Object get(int i)
          Returns the element at the specified position in this List.
protected  Map getValueIndex()
          Create a reverse index from value to position if this List is big enough to warrant it.
 SortedSet headSet(Object toElement)
          Returns a view of the portion of this sorted set whose elements are found in the set in a position before toElement.
 int indexOf(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.
 Iterator iterator()
          Returns an iterator over the elements in this list in proper sequence.
 Object last()
          Returns the last element currently in this sorted set.
 int lastIndexOf(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.
 int size()
          Returns the number of elements in this List.
 SortedSet subSet(Object fromElement, Object toElement)
          Returns a view of the portion of this sorted set whose elements are found in the set in a position at and after the position of fromElement and in a position before toElement.
 SortedSet tailSet(Object fromElement)
          Returns a view of the portion of this sorted set whose elements are found in the set in a position at and after the position of fromElement.
 Object[] toArray()
          Returns an array containing all of the elements in this List in the order that the elements occur in the List.
 Object[] toArray(Object[] a)
          Returns an array with a 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, listIterator, listIterator, remove, removeRange, set, subList
 
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, listIterator, listIterator, remove, remove, removeAll, retainAll, set, subList
 

Constructor Detail

ImmutableArrayList

public ImmutableArrayList(Object[] ao)
Construct a List from an Array.

Parameters:
ao - a non-null array of Objects

ImmutableArrayList

public ImmutableArrayList(Collection collection)
Construct a List containing the elements of the specified Collection.

Parameters:
collection - the Collection to fill this List from
Method Detail

size

public int size()
Returns the number of elements in this List.

Specified by:
size in interface Collection
Specified by:
size in interface List
Specified by:
size in interface Set
Specified by:
size in class AbstractCollection
Returns:
the number of elements in this List

get

public Object get(int i)
Returns the element at the specified position in this List.

Specified by:
get in interface List
Specified by:
get in class AbstractList
Parameters:
i - the index of the element to return
Returns:
the element at the specified position in this List
Throws:
IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= size()).

indexOf

public int indexOf(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. More formally, returns the lowest index i such that (o==null ? get(i)==null : o.equals(get(i))), or -1 if there is no such index.

Specified by:
indexOf in interface List
Overrides:
indexOf in class AbstractList
Parameters:
o - element to search for.
Returns:
the index in this List of the first occurrence of the specified element, or -1 if this List does not contain this element.

lastIndexOf

public int lastIndexOf(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. More formally, returns the highest index i such that (o==null ? get(i)==null : o.equals(get(i))), or -1 if there is no such index.

Specified by:
lastIndexOf in interface List
Overrides:
lastIndexOf in class AbstractList
Parameters:
o - element to search for.
Returns:
the index in this List of the last occurrence of the specified element, or -1 if this List does not contain this element.

contains

public boolean contains(Object o)
Returns true if this List contains the specified element. More formally, returns true if and only if this List contains at least one element e such that (o==null ? e==null : o.equals(e)).

Specified by:
contains in interface Collection
Specified by:
contains in interface List
Specified by:
contains in interface Set
Overrides:
contains in class AbstractCollection
Parameters:
o - element whose presence in this List is to be tested
Returns:
true if this List contains the specified element

toArray

public Object[] toArray()
Returns an array containing all of the elements in this List in the order that the elements occur in the List. The returned array will be "safe" in that no references to it are maintained by the List. The caller is thus free to modify the returned array.

Specified by:
toArray in interface Collection
Specified by:
toArray in interface List
Specified by:
toArray in interface Set
Overrides:
toArray in class AbstractCollection
Returns:
an array containing all of the elements in this List

toArray

public Object[] toArray(Object[] a)
Returns an array with a runtime type is that of the specified array and that contains all of the elements in this List. If the elements all fit in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this List.

If the List fits in the specified array with room to spare (i.e., the array has more elements than the List), the element in the array immediately following the end of the last element is set to null. This is useful in determining the length of the List only if the caller knows that the List does not contain any null elements.)

Specified by:
toArray in interface Collection
Specified by:
toArray in interface List
Specified by:
toArray in interface Set
Overrides:
toArray in class AbstractCollection
Parameters:
a - the array into which the elements of the List are to be stored, if it is big enough; otherwise, a new array of the same runtime type is allocated for this purpose
Returns:
an array containing the elements of the List
Throws:
ArrayStoreException - if the runtime type of the specified array is not a supertype of the runtime type of every element in this List

iterator

public Iterator iterator()
Returns an iterator over the elements in this list in proper sequence.

Specified by:
iterator in interface Iterable
Specified by:
iterator in interface Collection
Specified by:
iterator in interface List
Specified by:
iterator in interface Set
Overrides:
iterator in class AbstractList
Returns:
an iterator over the elements in this list in proper sequence.

comparator

public Comparator comparator()
Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.

Specified by:
comparator in interface SortedSet
Returns:
the comparator associated with this sorted set, or null if it uses its elements' natural ordering

first

public Object first()
Returns the first element currently in this sorted set.

Specified by:
first in interface SortedSet
Returns:
the first element currently in this sorted set
Throws:
NoSuchElementException - if the sorted set is empty

last

public Object last()
Returns the last element currently in this sorted set.

Specified by:
last in interface SortedSet
Returns:
the last element currently in this sorted set
Throws:
NoSuchElementException - if the sorted set is empty

headSet

public SortedSet headSet(Object toElement)
Returns a view of the portion of this sorted set whose elements are found in the set in a position before toElement.

Specified by:
headSet in interface SortedSet
Parameters:
toElement - high endpoint (exclusive) of the headSet
Returns:
a view of the specified initial range of this sorted set
Throws:
IllegalArgumentException - if toElement is not found in the SortedSet

tailSet

public SortedSet tailSet(Object fromElement)
Returns a view of the portion of this sorted set whose elements are found in the set in a position at and after the position of fromElement.

Specified by:
tailSet in interface SortedSet
Parameters:
fromElement - the first element to include in the resulting set
Returns:
a view of the specified final range of this sorted set
Throws:
IllegalArgumentException - if fromElement is not found in the SortedSet

subSet

public SortedSet subSet(Object fromElement,
                        Object toElement)
Returns a view of the portion of this sorted set whose elements are found in the set in a position at and after the position of fromElement and in a position before toElement.

Specified by:
subSet in interface SortedSet
Parameters:
fromElement - the first element to include in the resulting set
toElement - the first element following fromElement to not include in the resulting set
Returns:
a view of the specified range of this sorted set
Throws:
IllegalArgumentException - if either fromElement or toElement is not found in the SortedSet

clone

public Object clone()
Create a clone of the ImmutableArrayList.

Returns:
a clone of this list

compareTo

public int compareTo(Object o)
Compare this ImmutableArrayList with the passed Object to determine order.

All elements contained in both Lists must implement the Comparable interface. This method will compare the corresponding list element left-to-right and will immediately return the first non-zero comparison result. (A null element is always considered to be "less than" any non-null element.)

If all corresponding elements are equal, this method will return a negative integer if the size of this List is less than the size of the specified List, a positive integer if the size of this List is greater, and zero if the Lists are equal.

Specified by:
compareTo in interface Comparable
Parameters:
o - the Object to be compared
Returns:
a negative integer, zero, or a positive integer as this List evaluates to less than, equal to, or greater than the specified List object
Throws:
ClassCastException - if the specified object does not implement the List interface, some elements of either list do not implement the Comparable interface, or if an element object type prevents it from being compared to another element
NullPointerException - if the specified List itself or any of its elements are null
Since:
Coherence 3.2

equals

public boolean equals(Object o)
Compare this Collection / List / Set / SortedSet with some other Object and determine if the caller would believe this Object to equal that other Object.

Specified by:
equals in interface Collection
Specified by:
equals in interface List
Specified by:
equals in interface Set
Overrides:
equals in class AbstractList
Parameters:
o - 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)
Returns:
true iff this Object believes that it can make a defensible case that this Object is equal to the passed Object

getValueIndex

protected Map getValueIndex()
Create a reverse index from value to position if this List is big enough to warrant it.

Returns:
a Map that is keyed by the values in this List, with a corresponding Map value being the index within this List that the value is located

CoherenceTM v3.3
Copyright© 2000-2007 by Oracle Corporation