Interface Pageable

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static interface  Pageable.OffsetLimitParameters
      The usual (search) limit and offset parameters
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      @javax.validation.constraints.Min(0L) int getLimit()
      Maximum number of records to be returned.
      @javax.validation.constraints.Min(0L) long getOffset()
      Defines how many items to skip before beginning to return records.
    • Method Detail

      • getLimit

        @Min(0L)
        @javax.validation.constraints.Min(0L) int getLimit()
        Maximum number of records to be returned.
        Returns:
        the limit.
      • getOffset

        @Min(0L)
        @javax.validation.constraints.Min(0L) long getOffset()
        Defines how many items to skip before beginning to return records.
        Returns:
        the offset with 0 being no offset at all.