public interface SearchResult<E>
| Modifier and Type | Method and Description |
|---|---|
int |
getCount()
Gets size of result collection.
|
int |
getRequestedCount()
Gets requested result count.
|
int |
getRequestedStart()
Gets requested start index.
|
List<E> |
getResult()
Gets the search result.
|
int |
getTotalCount()
Gets size of collection without using range.
|
int getCount()
getRequestedCount() or less (if less elements are found)int getTotalCount()
AbstractQuery.isNeedTotal()=
false (default) than this total count is the same as getRequestedCount() or less. It is not
the total count of all elements in the db. (only when isNeedTotal=true)List<E> getResult()
null value at this
position.int getRequestedStart()
AbstractQuery.setStart(int)int getRequestedCount()
AbstractQuery.setCount(int)Copyright © 2017 SAP SE. All Rights Reserved.