Package org.sakaiproject.search.api
Interface SearchList
-
- All Superinterfaces:
Collection<SearchResult>,Iterable<SearchResult>,List<SearchResult>
public interface SearchList extends List<SearchResult>
- Author:
- ieb
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetFullSize()intgetStart()Iterator<SearchResult>iterator(int startAt)get an Iterator starting at-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
iterator
Iterator<SearchResult> iterator(int startAt)
get an Iterator starting at- Parameters:
startAt-- Returns:
-
getFullSize
int getFullSize()
- Returns:
- Get the full size of all the search results
-
getStart
int getStart()
- Returns:
- the start of the list
-
-