Uses of Class
org.apache.commons.pool.impl.CursorableLinkedList.Listable
-
Packages that use CursorableLinkedList.Listable Package Description org.apache.commons.pool.impl Object pooling API implementations. -
-
Uses of CursorableLinkedList.Listable in org.apache.commons.pool.impl
Fields in org.apache.commons.pool.impl declared as CursorableLinkedList.Listable Modifier and Type Field 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
Methods in org.apache.commons.pool.impl that return CursorableLinkedList.Listable Modifier and Type Method Description protected CursorableLinkedList.Listable<E>
CursorableLinkedList. getListableAt(int index)
Returns theorg.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 elementprotected 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()
Methods in org.apache.commons.pool.impl with parameters of type CursorableLinkedList.Listable Modifier and Type Method 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 elementprotected 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 elementprotected 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 givenorg.apache.commons.collections.CursorableLinkedList.Listable
from my list.protected void
CursorableSubList. removeListable(CursorableLinkedList.Listable<E> elt)
Removes the givenCursorableLinkedList.Listable
from my list.(package private) void
CursorableLinkedList.Listable. setNext(CursorableLinkedList.Listable<E> next)
(package private) void
CursorableLinkedList.Listable. setPrev(CursorableLinkedList.Listable<E> prev)
Constructors in org.apache.commons.pool.impl with parameters of type CursorableLinkedList.Listable Constructor Description Listable(CursorableLinkedList.Listable<E> prev, CursorableLinkedList.Listable<E> next, E val)
-