Package org.springframework.data.geo
Class GeoPage<T>
- All Implemented Interfaces:
Serializable
,Iterable<GeoResult<T>>
,Supplier<Stream<GeoResult<T>>>
,Page<GeoResult<T>>
,Slice<GeoResult<T>>
,Streamable<GeoResult<T>>
- Since:
- 1.8
- Author:
- Oliver Gierke, Thomas Darimont
- See Also:
-
Constructor Summary
ConstructorDescriptionGeoPage
(GeoResults<T> results) Creates a newGeoPage
from the givenGeoResults
.GeoPage
(GeoResults<T> results, Pageable pageable, long total) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the page content asList
.protected <U> List<U>
getConvertedContent
(Function<? super GeoResult<T>, ? extends U> converter) int
Returns the number of the currentSlice
.int
Returns the number of elements currently on thisSlice
.int
getSize()
Returns the size of theSlice
.getSort()
Returns the sorting parameters for theSlice
.boolean
Returns whether theSlice
has content at all.int
hashCode()
boolean
Returns if there is a previousSlice
.boolean
isFirst()
Returns whether the currentSlice
is the first one.iterator()
Methods inherited from class org.springframework.data.domain.PageImpl
getTotalElements, getTotalPages, hasNext, isLast, map, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
Methods inherited from interface org.springframework.data.domain.Slice
getContent, getNumber, getNumberOfElements, getPageable, getSize, getSort, hasContent, hasPrevious, isFirst, nextOrLastPageable, nextPageable, previousOrFirstPageable, previousPageable
-
Constructor Details
-
GeoPage
Creates a newGeoPage
from the givenGeoResults
.- Parameters:
results
- must not be null.
-
GeoPage
- Parameters:
results
- must not be null.pageable
- must not be null.total
-
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
getAverageDistance
-
getNumber
public int getNumber()Description copied from interface:Slice
Returns the number of the currentSlice
. Is always non-negative. -
getSize
public int getSize()Description copied from interface:Slice
Returns the size of theSlice
. -
getNumberOfElements
public int getNumberOfElements()Description copied from interface:Slice
Returns the number of elements currently on thisSlice
.- Specified by:
getNumberOfElements
in interfaceSlice<T>
- Returns:
- the number of elements currently on this
Slice
.
-
hasPrevious
public boolean hasPrevious()Description copied from interface:Slice
Returns if there is a previousSlice
.- Specified by:
hasPrevious
in interfaceSlice<T>
- Returns:
- if there is a previous
Slice
.
-
isFirst
public boolean isFirst()Description copied from interface:Slice
Returns whether the currentSlice
is the first one. -
nextPageable
Description copied from interface:Slice
Returns thePageable
to request the nextSlice
. Can bePageable.unpaged()
in case the currentSlice
is already the last one. Clients should checkSlice.hasNext()
before calling this method.- Specified by:
nextPageable
in interfaceSlice<T>
- Returns:
- See Also:
-
previousPageable
Description copied from interface:Slice
Returns thePageable
to request the previousSlice
. Can bePageable.unpaged()
in case the currentSlice
is already the first one. Clients should checkSlice.hasPrevious()
before calling this method.- Specified by:
previousPageable
in interfaceSlice<T>
- Returns:
- See Also:
-
hasContent
public boolean hasContent()Description copied from interface:Slice
Returns whether theSlice
has content at all.- Specified by:
hasContent
in interfaceSlice<T>
- Returns:
-
getContent
Description copied from interface:Slice
Returns the page content asList
.- Specified by:
getContent
in interfaceSlice<T>
- Returns:
-
getPageable
Description copied from interface:Slice
- Specified by:
getPageable
in interfaceSlice<T>
- Returns:
-
getSort
Description copied from interface:Slice
Returns the sorting parameters for theSlice
. -
iterator
-
getConvertedContent
- Parameters:
converter
- must not be null.- Returns:
-