|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcoins.aflow.util.CoinsList
List whose iterator implements CoinsIterator (returned by coinsIterator()). This list maintains the list of CoinsIterator this list has, and every such iterator will be notified when there is a structural modification to this list.
LinkedList| Nested Class Summary | |
protected static class |
CoinsList.Entry
|
protected class |
CoinsList.Itr
|
(package private) class |
CoinsList.SubList
|
| Field Summary | |
protected java.util.List |
fIterators
|
protected CoinsList.Entry |
header
|
protected int |
modCount
Not used in this class. |
protected int |
size
|
| Constructor Summary | |
CoinsList()
Constructs an empty list. |
|
CoinsList(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. |
|
| Method Summary | |
void |
add(int index,
java.lang.Object element)
Inserts the specified element at the specified position in 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. |
protected CoinsList.Entry |
addBefore(java.lang.Object o,
CoinsList.Entry e,
int pIndex)
|
void |
addFirst(java.lang.Object o)
Inserts the given element at the beginning of this list. |
void |
addLast(java.lang.Object o)
Appends the given element to the end of this list. |
void |
clear()
Removes all of the elements from this list. |
java.lang.Object |
clone()
Returns a shallow copy of this LinkedList. |
CoinsIterator |
coinsIterator()
Returns a CoinsIterator object backed by this list, whose cursor is placed at the beginning of this list. |
CoinsIterator |
coinsIterator(int pIndex)
Returns a CoinsIterator object backed by this list, whose cursor is placed before the given index. |
boolean |
contains(java.lang.Object o)
Returns true if this list contains the specified element. |
boolean |
containsAll(java.util.Collection c)
|
protected CoinsList.Entry |
entry(int index)
Return the indexed entry. |
boolean |
equals(java.lang.Object o)
|
java.lang.Object |
get(int index)
Returns the element at the specified position in this list. |
java.lang.Object |
getFirst()
Returns the first element in this list. |
java.lang.Object |
getLast()
Returns the last element in this list. |
int |
hashCode()
|
int |
indexOf(java.lang.Object o)
Returns the index in this list of the first occurrence of the specified element, or -1 if the List does not contain this element. |
boolean |
isEmpty()
|
java.util.Iterator |
iterator()
|
int |
lastIndexOf(java.lang.Object o)
Returns the index in this list of the last occurrence of the specified element, or -1 if the list does not contain this element. |
java.util.ListIterator |
listIterator()
|
java.util.ListIterator |
listIterator(int index)
|
protected void |
notifyIteratorsOfAddition(int pIndex)
Notify all the iterators of this list of the addition of an element at point pIndex to this list, so that they can adjust their current positions if necessary. |
protected void |
notifyIteratorsOfClearance()
Notify all the iterators of this list of the clearance of this list, so that they can initialize. |
protected void |
notifyIteratorsOfRemoval(CoinsList.Entry e,
int pIndex)
Notify all the iterators of this list of the removal of an element at the specified position to this list, so that they can adjust their current states. |
protected void |
remove(CoinsList.Entry e,
int pIndex)
|
java.lang.Object |
remove(int index)
Removes the element at the specified position in this list. |
boolean |
remove(java.lang.Object o)
Removes the first occurrence of the specified element in this list. |
boolean |
removeAll(java.util.Collection c)
|
java.lang.Object |
removeFirst()
Removes and returns the first element from this list. |
java.lang.Object |
removeLast()
Removes and returns the last element from this list. |
boolean |
retainAll(java.util.Collection c)
|
java.lang.Object |
set(int index,
java.lang.Object element)
Replaces the element at the specified position in this list with the specified element. |
int |
size()
Returns the number of elements in this list. |
java.util.List |
subList(int fromIndex,
int toIndex)
|
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. |
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
protected transient CoinsList.Entry header
protected transient int size
protected java.util.List fIterators
protected int modCount
| Constructor Detail |
public CoinsList()
public CoinsList(java.util.Collection c)
c - the collection whose elements are to be placed into this list.| Method Detail |
public java.lang.Object getFirst()
public java.lang.Object getLast()
java.util.NoSuchElementException - if this list is empty.public java.lang.Object removeFirst()
java.util.NoSuchElementException - if this list is empty.public java.lang.Object removeLast()
java.util.NoSuchElementException - if this list is empty.public void addFirst(java.lang.Object o)
o - the element to be inserted at the beginning of this list.public void addLast(java.lang.Object o)
o - the element to be inserted at the end of this list.public boolean contains(java.lang.Object o)
contains in interface java.util.Listo - element whose presence in this list is to be tested.
public int size()
size in interface java.util.Listpublic boolean isEmpty()
isEmpty in interface java.util.Listpublic boolean add(java.lang.Object o)
add in interface java.util.Listo - element to be appended to this list.
public boolean remove(java.lang.Object o)
remove in interface java.util.Listo - element to be removed from this list, if present.
public boolean containsAll(java.util.Collection c)
containsAll in interface java.util.Listpublic boolean addAll(java.util.Collection c)
addAll in interface java.util.Listc - the elements to be inserted into this list.
java.lang.IndexOutOfBoundsException - if the specified index is out of
range (index < 0 || index > size()).
public boolean addAll(int index,
java.util.Collection c)
addAll in interface java.util.Listindex - index at which to insert first element
from the specified collection.c - elements to be inserted into this list.
java.lang.IndexOutOfBoundsException - if the specified index is out of
range (index < 0 || index > size()).public boolean removeAll(java.util.Collection c)
removeAll in interface java.util.Listpublic boolean retainAll(java.util.Collection c)
retainAll in interface java.util.Listpublic void clear()
clear in interface java.util.Listpublic boolean equals(java.lang.Object o)
equals in interface java.util.Listpublic int hashCode()
hashCode in interface java.util.Listpublic java.lang.Object get(int index)
get in interface java.util.Listindex - index of element to return.
java.lang.IndexOutOfBoundsException - if the specified index is is out of
range (index < 0 || index >= size()).
public java.lang.Object set(int index,
java.lang.Object element)
set in interface java.util.Listindex - index of element to replace.element - element to be stored at the specified position.
java.lang.IndexOutOfBoundsException - if the specified index is out of
range (index < 0 || index >= size()).
public void add(int index,
java.lang.Object element)
add in interface java.util.Listindex - index at which the specified element is to be inserted.element - element to be inserted.
java.lang.IndexOutOfBoundsException - if the specified index is out of
range (index < 0 || index > size()).public java.lang.Object remove(int index)
remove in interface java.util.Listindex - the index of the element to removed.
java.lang.IndexOutOfBoundsException - if the specified index is out of
range (index < 0 || index >= size()).protected CoinsList.Entry entry(int index)
public int indexOf(java.lang.Object o)
indexOf in interface java.util.Listo - element to search for.
public int lastIndexOf(java.lang.Object o)
lastIndexOf in interface java.util.Listo - element to search for.
public java.util.Iterator iterator()
iterator in interface java.util.Listpublic java.util.ListIterator listIterator()
listIterator in interface java.util.Listpublic java.util.ListIterator listIterator(int index)
listIterator in interface java.util.Listpublic CoinsIterator coinsIterator()
CoinsIterator object backed by this list, whose cursor is placed at the beginning of this list.
public CoinsIterator coinsIterator(int pIndex)
CoinsIterator object backed by this list, whose cursor is placed before the given index. Subsequent call to next will return the pIndexth element of this list.
protected void notifyIteratorsOfAddition(int pIndex)
pIndex to this list, so that they can adjust their current positions if necessary.
protected void notifyIteratorsOfClearance()
protected void notifyIteratorsOfRemoval(CoinsList.Entry e,
int pIndex)
protected CoinsList.Entry addBefore(java.lang.Object o,
CoinsList.Entry e,
int pIndex)
protected void remove(CoinsList.Entry e,
int pIndex)
public java.lang.Object clone()
public java.lang.Object[] toArray()
toArray in interface java.util.Listpublic 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.Lista - 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.util.List subList(int fromIndex,
int toIndex)
subList in interface java.util.Listpublic java.lang.String toString()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||