|
Spring Data Core | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.springframework.data.domain.PageImpl<GeoResult<T>>
org.springframework.data.geo.GeoPage<T>
public class GeoPage<T>
Custom Page to carry the average distance retrieved from the GeoResults the GeoPage is set up
from.
| Constructor Summary | |
|---|---|
GeoPage(GeoResults<T> results)
Creates a new GeoPage from the given GeoResults. |
|
GeoPage(GeoResults<T> results,
Pageable pageable,
long total)
Creates a new GeoPage from the given GeoResults, Pageable and total. |
|
| Method Summary | |
|---|---|
Distance |
getAverageDistance()
Returns the average distance of the underlying results. |
List<T> |
getContent()
Returns the page content as List. |
int |
getNumber()
Returns the number of the current Slice. |
int |
getNumberOfElements()
Returns the number of elements currently on this Slice. |
int |
getSize()
Returns the size of the Slice. |
Sort |
getSort()
Returns the sorting parameters for the Slice. |
boolean |
hasContent()
Returns whether the Slice has content at all. |
boolean |
hasPrevious()
Returns if there is a previous Slice. |
boolean |
isFirst()
Returns whether the current Slice is the first one. |
Iterator<T> |
iterator()
|
Pageable |
nextPageable()
Returns the Pageable to request the next Slice. |
Pageable |
previousPageable()
Returns the Pageable to request the previous Slice. |
| Methods inherited from class org.springframework.data.domain.PageImpl |
|---|
equals, getTotalElements, getTotalPages, hashCode, hasNext, hasNextPage, hasPreviousPage, isFirstPage, isLast, isLastPage, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.springframework.data.domain.Slice |
|---|
getContent, getNumber, getNumberOfElements, getSize, getSort, hasContent, hasPrevious, isFirst, nextPageable, previousPageable |
| Methods inherited from interface java.lang.Iterable |
|---|
iterator |
| Constructor Detail |
|---|
public GeoPage(GeoResults<T> results)
GeoPage from the given GeoResults.
content - must not be null.
public GeoPage(GeoResults<T> results,
Pageable pageable,
long total)
GeoPage from the given GeoResults, Pageable and total.
results - must not be null.pageable - must not be null.total - | Method Detail |
|---|
public Distance getAverageDistance()
public int getNumber()
SliceSlice. Is always non-negative.
getNumber in interface Slice<T>Slice.public int getSize()
SliceSlice.
getSize in interface Slice<T>Slice.public int getNumberOfElements()
SliceSlice.
getNumberOfElements in interface Slice<T>Slice.public boolean hasPrevious()
SliceSlice.
hasPrevious in interface Slice<T>Slice.public boolean isFirst()
SliceSlice is the first one.
isFirst in interface Slice<T>public Pageable nextPageable()
SlicePageable to request the next Slice. Can be null in case the current
Slice is already the last one. Clients should check Slice.hasNext() before calling this method to make
sure they receive a non-null value.
nextPageable in interface Slice<T>public Pageable previousPageable()
SlicePageable to request the previous Slice. Can be null in case the current
Slice is already the first one. Clients should check Slice.hasPrevious() before calling this method make
sure receive a non-null value.
previousPageable in interface Slice<T>public boolean hasContent()
SliceSlice has content at all.
hasContent in interface Slice<T>public List<T> getContent()
SliceList.
getContent in interface Slice<T>public Sort getSort()
SliceSlice.
getSort in interface Slice<T>public Iterator<T> iterator()
iterator in interface Iterable<T>
|
Spring Data Core | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||