Method Summary |
|
public void | add(Object o) Inserts the specified element into the list (optional operation). |
public int | getCountOfHits() |
public int | getCountOfHitsPerPage() |
public int | getCountOfPages() |
public int | getStartIndex() |
public boolean | hasNext() Returns true if this list iterator has more elements when traversing
the list in the forward direction. |
public boolean | hasPrevious() Returns true if this list iterator has more elements when traversing
the list in the reverse direction. |
public Object | next() Returns the next element in the list. |
public int | nextIndex() Returns the index of the element that would be returned by a
subsequent call to next. |
public Object | previous() Returns the previous element in the list. |
public int | previousIndex() Returns the index of the element that would be returned by a
subsequent call to previous. |
public void | remove() Removes from the list the last element that was returned by next or
previous (optional operation). |
public void | set(Object o) Replaces the last element returned by next or previous with the
specified element (optional operation). |
public void | setCountOfHitsPerPage(int countOfHitsPerPage) |
public void | setHits(Hits hits) |
public void | setStartIndex(int start_index) |