|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList
com.essbase.eas.utils.SortedArrayList
public class SortedArrayList
Field Summary |
---|
Fields inherited from class java.util.AbstractList |
---|
modCount |
Constructor Summary | |
---|---|
SortedArrayList() Constructs an empty list with an initial capacity of ten. |
|
SortedArrayList(java.util.Collection c) Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator. |
|
SortedArrayList(int initialCapacity) Constructs an empty list with the specified initial capacity. |
Method Summary | |
---|---|
void |
add(int index, java.lang.Object element) Inserts the specified element at the specified position in this list. |
boolean |
add(java.util.List list) |
boolean |
add(java.lang.Object o) Appends the specified element to the end of this list. |
boolean |
add(java.lang.Object[] o) Appends the specified element to the end of this list. |
boolean |
addAll(java.util.Collection c) Appends all of the elements in the specified Collection to the end of this list, in the order that they are returned by the specified Collection's Iterator. |
boolean |
addAll(int index, java.util.Collection c) Inserts all of the elements in the specified Collection into this list, starting at the specified position. |
void |
clear() Removes all of the elements from this list. |
java.lang.Object |
clone() Returns a shallow copy of this SortedArrayList instance. |
boolean |
contains(java.lang.Object elem) Returns true if this list contains the specified element. |
void |
ensureCapacity(int minCapacity) Increases the capacity of this SortedArrayList instance, if necessary, to ensure that it can hold at least the number of elements specified by the minimum capacity argument. |
java.lang.Object |
get(int index) Returns the element at the specified position in this list. |
int |
indexOf(java.lang.Object elem) Searches for the first occurence of the given argument, testing for equality using the equals method. |
boolean |
isEmpty() Tests if this list has no elements. |
int |
lastIndexOf(java.lang.Object elem) Returns the index of the last occurrence of the specified object in this list. |
java.lang.Object |
remove(int index) Removes the element at the specified position in this list. |
protected void |
removeRange(int fromIndex, int toIndex) Removes from this List all of the elements whose index is between fromIndex, inclusive and toIndex, exclusive. |
int |
search(java.lang.Object searchObject) |
java.lang.Object |
set(int index, java.lang.Object element) Replaces the element at the specified position in this list with the specified element. |
void |
setIgnoreCase(boolean ignore) |
int |
size() Returns the number of elements in this list. |
void |
sort() |
java.lang.Object[] |
toArray() Returns an array containing all of the elements in this list in the correct order. |
java.lang.Object[] |
toArray(java.lang.Object[] a) Returns an array containing all of the elements in this list in the correct order; the runtime type of the returned array is that of the specified array. |
void |
trimToSize() Trims the capacity of this SortedArrayList instance to be the list's current size. |
Methods inherited from class java.util.AbstractList |
---|
equals, hashCode, iterator, listIterator, listIterator, subList |
Methods inherited from class java.util.AbstractCollection |
---|
containsAll, remove, removeAll, retainAll, toString |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, remove, removeAll, retainAll, subList |
Constructor Detail |
---|
public SortedArrayList(int initialCapacity)
initialCapacity
- the initial capacity of the list.java.lang.IllegalArgumentException
- if the specified initial capacity is negativepublic SortedArrayList()
public SortedArrayList(java.util.Collection c)
c
- the collection whose elements are to be placed into this list.java.lang.NullPointerException
- if the specified collection is null.Method Detail |
---|
public void trimToSize()
public void ensureCapacity(int minCapacity)
minCapacity
- the desired minimum capacity.public int size()
size
in interface java.util.Collection
size
in interface java.util.List
size
in class java.util.AbstractCollection
public boolean isEmpty()
isEmpty
in interface java.util.Collection
isEmpty
in interface java.util.List
isEmpty
in class java.util.AbstractCollection
public boolean contains(java.lang.Object elem)
contains
in interface java.util.Collection
contains
in interface java.util.List
contains
in class java.util.AbstractCollection
elem
- element whose presence in this List is to be tested.true
if the specified element is present; false
otherwise.public int indexOf(java.lang.Object elem)
indexOf
in interface java.util.List
indexOf
in class java.util.AbstractList
elem
- an object.Object.equals(Object)
public int lastIndexOf(java.lang.Object elem)
lastIndexOf
in interface java.util.List
lastIndexOf
in class java.util.AbstractList
elem
- the desired element.public java.lang.Object clone()
clone
in class java.lang.Object
public java.lang.Object[] toArray()
toArray
in interface java.util.Collection
toArray
in interface java.util.List
toArray
in class java.util.AbstractCollection
public java.lang.Object[] toArray(java.lang.Object[] a)
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 collection 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.
toArray
in interface java.util.Collection
toArray
in interface java.util.List
toArray
in class java.util.AbstractCollection
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.java.lang.ArrayStoreException
- if the runtime type of a is not a supertype of the runtime type of every element in this list.public java.lang.Object get(int index)
get
in interface java.util.List
get
in class java.util.AbstractList
index
- index of element to return.java.lang.IndexOutOfBoundsException
- if index is out of range (index < 0 || index >= size()).public java.lang.Object set(int index, java.lang.Object element)
set
in interface java.util.List
set
in class java.util.AbstractList
index
- index of element to replace.element
- element to be stored at the specified position.java.lang.IndexOutOfBoundsException
- if index out of range (index < 0 || index >= size()).public boolean add(java.lang.Object o)
add
in interface java.util.Collection
add
in interface java.util.List
add
in class java.util.AbstractList
o
- element to be appended to this list.public boolean add(java.lang.Object[] o)
o
- array element to be appended to this list.public boolean add(java.util.List list)
public void add(int index, java.lang.Object element)
add
in interface java.util.List
add
in class java.util.AbstractList
index
- index at which the specified element is to be inserted.element
- element to be inserted.java.lang.IndexOutOfBoundsException
- if index is out of range (index < 0 || index > size()).public java.lang.Object remove(int index)
remove
in interface java.util.List
remove
in class java.util.AbstractList
index
- the index of the element to removed.java.lang.IndexOutOfBoundsException
- if index out of range (index < 0 || index >= size()).public void clear()
clear
in interface java.util.Collection
clear
in interface java.util.List
clear
in class java.util.AbstractList
public boolean addAll(java.util.Collection c)
addAll
in interface java.util.Collection
addAll
in interface java.util.List
addAll
in class java.util.AbstractCollection
c
- the elements to be inserted into this list.java.lang.IndexOutOfBoundsException
- if index out of range (index < 0 || index > size()).java.lang.NullPointerException
- if the specified collection is null.public boolean addAll(int index, java.util.Collection c)
addAll
in interface java.util.List
addAll
in class java.util.AbstractList
index
- index at which to insert first element from the specified collection.c
- elements to be inserted into this list.java.lang.IndexOutOfBoundsException
- if index out of range (index < 0 || index > size()).java.lang.NullPointerException
- if the specified Collection is null.protected void removeRange(int fromIndex, int toIndex)
removeRange
in class java.util.AbstractList
fromIndex
- index of first element to be removed.toIndex
- index after last element to be removed.public void sort()
public int search(java.lang.Object searchObject)
public void setIgnoreCase(boolean ignore)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |