Class FacetedPage<T>
- java.lang.Object
-
- org.springframework.data.domain.PageImpl<T>
-
- io.github.malteseduck.springframework.data.marklogic.domain.facets.FacetedPage<T>
-
- Type Parameters:
T
-
- All Implemented Interfaces:
Serializable
,Iterable<T>
,Supplier<Stream<T>>
,org.springframework.data.domain.Page<T>
,org.springframework.data.domain.Slice<T>
,org.springframework.data.util.Streamable<T>
public class FacetedPage<T> extends org.springframework.data.domain.PageImpl<T>
Extension of Spring'sPage
that adds MarkLogic's facet results to a search result page.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FacetedPage(List<T> content, org.springframework.data.domain.Pageable pageable, long total, com.marklogic.client.query.FacetResult[] facets)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<T>
getContent()
protected <U extends Object>
List<U>getConvertedContent(Function<? super T,? extends U> arg0)
List<FacetResultDto>
getFacets()
int
getNumber()
int
getNumberOfElements()
org.springframework.data.domain.Pageable
getPageable()
int
getSize()
org.springframework.data.domain.Sort
getSort()
boolean
hasContent()
boolean
hasPrevious()
boolean
isFirst()
Iterator<T>
iterator()
org.springframework.data.domain.Pageable
nextPageable()
org.springframework.data.domain.Pageable
previousPageable()
-
Methods inherited from class org.springframework.data.domain.PageImpl
equals, getTotalElements, getTotalPages, hashCode, 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
-
-
-
-
Method Detail
-
getFacets
public List<FacetResultDto> getFacets()
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getSize
public int getSize()
- Specified by:
getSize
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getNumberOfElements
public int getNumberOfElements()
- Specified by:
getNumberOfElements
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
isFirst
public boolean isFirst()
- Specified by:
isFirst
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
nextPageable
public org.springframework.data.domain.Pageable nextPageable()
- Specified by:
nextPageable
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
previousPageable
public org.springframework.data.domain.Pageable previousPageable()
- Specified by:
previousPageable
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
hasContent
public boolean hasContent()
- Specified by:
hasContent
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getContent
public List<T> getContent()
- Specified by:
getContent
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getSort
public org.springframework.data.domain.Sort getSort()
- Specified by:
getSort
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
iterator
public Iterator<T> iterator()
-
getConvertedContent
protected <U extends Object> List<U> getConvertedContent(Function<? super T,? extends U> arg0)
-
getPageable
public org.springframework.data.domain.Pageable getPageable()
- Specified by:
getPageable
in interfaceorg.springframework.data.domain.Slice<T extends Object>
-
-