Package | Description |
---|---|
org.apache.commons.pool.impl |
Object pooling API implementations.
|
Modifier and Type | Field and Description |
---|---|
(package private) CursorableLinkedList.Listable<E> |
CursorableLinkedList.ListIter._cur |
protected CursorableLinkedList.Listable<E> |
CursorableLinkedList._head
A sentry node.
|
(package private) CursorableLinkedList.Listable<E> |
CursorableLinkedList.ListIter._lastReturned |
private CursorableLinkedList.Listable<E> |
CursorableLinkedList.Listable._next |
protected CursorableLinkedList.Listable<E> |
CursorableSubList._post
The element in my underlying list following the last element in my list.
|
protected CursorableLinkedList.Listable<E> |
CursorableSubList._pre
The element in my underlying list preceding the first element in my list.
|
private CursorableLinkedList.Listable<E> |
CursorableLinkedList.Listable._prev |
Modifier and Type | Method and Description |
---|---|
protected CursorableLinkedList.Listable<E> |
CursorableLinkedList.getListableAt(int index)
Returns the
org.apache.commons.collections.CursorableLinkedList.Listable
at the specified index. |
protected CursorableLinkedList.Listable<E> |
CursorableLinkedList.insertListable(CursorableLinkedList.Listable<E> before,
CursorableLinkedList.Listable<E> after,
E value)
Inserts a new value into my
list, after the specified before element, and before the
specified after element
|
protected CursorableLinkedList.Listable<E> |
CursorableSubList.insertListable(CursorableLinkedList.Listable<E> before,
CursorableLinkedList.Listable<E> after,
E value)
Inserts a new value into my
list, after the specified before element, and before the
specified after element
|
(package private) CursorableLinkedList.Listable<E> |
CursorableLinkedList.Listable.next() |
(package private) CursorableLinkedList.Listable<E> |
CursorableLinkedList.Listable.prev() |
Modifier and Type | Method and Description |
---|---|
protected void |
CursorableLinkedList.broadcastListableChanged(CursorableLinkedList.Listable<E> elt)
Informs all of my registered cursors that the specified
element was changed.
|
protected void |
CursorableLinkedList.broadcastListableInserted(CursorableLinkedList.Listable<E> elt)
Informs all of my registered cursors that the specified
element was just added to my list.
|
protected void |
CursorableLinkedList.broadcastListableRemoved(CursorableLinkedList.Listable<E> elt)
Informs all of my registered cursors that the specified
element was just removed from my list.
|
protected CursorableLinkedList.Listable<E> |
CursorableLinkedList.insertListable(CursorableLinkedList.Listable<E> before,
CursorableLinkedList.Listable<E> after,
E value)
Inserts a new value into my
list, after the specified before element, and before the
specified after element
|
protected CursorableLinkedList.Listable<E> |
CursorableLinkedList.insertListable(CursorableLinkedList.Listable<E> before,
CursorableLinkedList.Listable<E> after,
E value)
Inserts a new value into my
list, after the specified before element, and before the
specified after element
|
protected CursorableLinkedList.Listable<E> |
CursorableSubList.insertListable(CursorableLinkedList.Listable<E> before,
CursorableLinkedList.Listable<E> after,
E value)
Inserts a new value into my
list, after the specified before element, and before the
specified after element
|
protected CursorableLinkedList.Listable<E> |
CursorableSubList.insertListable(CursorableLinkedList.Listable<E> before,
CursorableLinkedList.Listable<E> after,
E value)
Inserts a new value into my
list, after the specified before element, and before the
specified after element
|
protected void |
CursorableLinkedList.Cursor.listableChanged(CursorableLinkedList.Listable<E> elt) |
protected void |
CursorableLinkedList.Cursor.listableInserted(CursorableLinkedList.Listable<E> elt) |
protected void |
CursorableLinkedList.Cursor.listableRemoved(CursorableLinkedList.Listable<E> elt) |
protected void |
CursorableLinkedList.removeListable(CursorableLinkedList.Listable<E> elt)
Removes the given
org.apache.commons.collections.CursorableLinkedList.Listable
from my list. |
protected void |
CursorableSubList.removeListable(CursorableLinkedList.Listable<E> elt)
Removes the given
CursorableLinkedList.Listable from my list. |
(package private) void |
CursorableLinkedList.Listable.setNext(CursorableLinkedList.Listable<E> next) |
(package private) void |
CursorableLinkedList.Listable.setPrev(CursorableLinkedList.Listable<E> prev) |
Constructor and Description |
---|
Listable(CursorableLinkedList.Listable<E> prev,
CursorableLinkedList.Listable<E> next,
E val) |
Listable(CursorableLinkedList.Listable<E> prev,
CursorableLinkedList.Listable<E> next,
E val) |