Class SyncopePage<T>

java.lang.Object
org.springframework.data.domain.PageImpl<T>
org.apache.syncope.core.persistence.api.search.SyncopePage<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 SyncopePage<T> extends org.springframework.data.domain.PageImpl<T>
See Also:
  • Constructor Details

    • SyncopePage

      public SyncopePage(List<T> content, org.springframework.data.domain.Pageable pageable, long total)
  • Method Details

    • getTotalElements

      public long getTotalElements()
      Specified by:
      getTotalElements in interface org.springframework.data.domain.Page<T>
      Overrides:
      getTotalElements in class org.springframework.data.domain.PageImpl<T>
    • getTotalPages

      public int getTotalPages()
      Specified by:
      getTotalPages in interface org.springframework.data.domain.Page<T>
      Overrides:
      getTotalPages in class org.springframework.data.domain.PageImpl<T>
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class org.springframework.data.domain.PageImpl<T>
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class org.springframework.data.domain.PageImpl<T>
    • getNumber

      public int getNumber()
      Specified by:
      getNumber in interface org.springframework.data.domain.Slice<T>
    • getSize

      public int getSize()
      Specified by:
      getSize in interface org.springframework.data.domain.Slice<T>
    • getNumberOfElements

      public int getNumberOfElements()
      Specified by:
      getNumberOfElements in interface org.springframework.data.domain.Slice<T>
    • hasPrevious

      public boolean hasPrevious()
      Specified by:
      hasPrevious in interface org.springframework.data.domain.Slice<T>
    • isFirst

      public boolean isFirst()
      Specified by:
      isFirst in interface org.springframework.data.domain.Slice<T>
    • nextPageable

      public org.springframework.data.domain.Pageable nextPageable()
      Specified by:
      nextPageable in interface org.springframework.data.domain.Slice<T>
    • previousPageable

      public org.springframework.data.domain.Pageable previousPageable()
      Specified by:
      previousPageable in interface org.springframework.data.domain.Slice<T>
    • hasContent

      public boolean hasContent()
      Specified by:
      hasContent in interface org.springframework.data.domain.Slice<T>
    • getContent

      public List<T> getContent()
      Specified by:
      getContent in interface org.springframework.data.domain.Slice<T>
    • getPageable

      public org.springframework.data.domain.Pageable getPageable()
      Specified by:
      getPageable in interface org.springframework.data.domain.Slice<T>
    • getSort

      public org.springframework.data.domain.Sort getSort()
      Specified by:
      getSort in interface org.springframework.data.domain.Slice<T>
    • iterator

      public Iterator<T> iterator()
      Specified by:
      iterator in interface Iterable<T>
    • getConvertedContent

      protected <U> List<U> getConvertedContent(Function<? super T,? extends U> arg0)