|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object | +--coins.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
入れ子クラスの概要 | |
protected static class |
CoinsList.Entry
|
protected class |
CoinsList.Itr
|
(パッケージプライベート) class |
CoinsList.SubList
|
フィールドの概要 | |
protected java.util.List |
fIterators
|
protected CoinsList.Entry |
header
|
protected int |
modCount
Not used in this class. |
protected int |
size
|
コンストラクタの概要 | |
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. |
メソッドの概要 | |
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()
|
クラス java.lang.Object から継承したメソッド |
finalize, getClass, notify, notifyAll, wait, wait, wait |
フィールドの詳細 |
protected transient CoinsList.Entry header
protected transient int size
protected java.util.List fIterators
protected int modCount
コンストラクタの詳細 |
public CoinsList()
public CoinsList(java.util.Collection c)
c
- the collection whose elements are to be placed into this list.メソッドの詳細 |
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)
java.util.List
内の contains
o
- element whose presence in this list is to be tested.
public int size()
java.util.List
内の size
public boolean isEmpty()
java.util.List
内の isEmpty
public boolean add(java.lang.Object o)
java.util.List
内の add
o
- element to be appended to this list.
public boolean remove(java.lang.Object o)
java.util.List
内の remove
o
- element to be removed from this list, if present.
public boolean containsAll(java.util.Collection c)
java.util.List
内の containsAll
public boolean addAll(java.util.Collection c)
java.util.List
内の addAll
c
- 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)
java.util.List
内の addAll
index
- 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)
java.util.List
内の removeAll
public boolean retainAll(java.util.Collection c)
java.util.List
内の retainAll
public void clear()
java.util.List
内の clear
public boolean equals(java.lang.Object o)
java.util.List
内の equals
java.lang.Object
内の equals
public int hashCode()
java.util.List
内の hashCode
java.lang.Object
内の hashCode
public java.lang.Object get(int index)
java.util.List
内の get
index
- 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)
java.util.List
内の set
index
- 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)
java.util.List
内の add
index
- 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)
java.util.List
内の remove
index
- 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)
java.util.List
内の indexOf
o
- element to search for.
public int lastIndexOf(java.lang.Object o)
java.util.List
内の lastIndexOf
o
- element to search for.
public java.util.Iterator iterator()
java.util.List
内の iterator
public java.util.ListIterator listIterator()
java.util.List
内の listIterator
public java.util.ListIterator listIterator(int index)
java.util.List
内の listIterator
public 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 pIndex
th 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()
java.lang.Object
内の clone
public java.lang.Object[] toArray()
java.util.List
内の toArray
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.
java.util.List
内の toArray
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.util.List subList(int fromIndex, int toIndex)
java.util.List
内の subList
public java.lang.String toString()
java.lang.Object
内の toString
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |