Package io.lakefs.clients.api.model
Class Pagination
- java.lang.Object
-
- io.lakefs.clients.api.model.Pagination
-
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public class Pagination extends ObjectPagination
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_HAS_MOREstatic StringSERIALIZED_NAME_MAX_PER_PAGEstatic StringSERIALIZED_NAME_NEXT_OFFSETstatic StringSERIALIZED_NAME_RESULTS
-
Constructor Summary
Constructors Constructor Description Pagination()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)BooleangetHasMore()Next page is availableIntegergetMaxPerPage()Maximal number of entries per page minimum: 0StringgetNextOffset()Token used to retrieve the next pageIntegergetResults()Number of values found in the results minimum: 0inthashCode()PaginationhasMore(Boolean hasMore)PaginationmaxPerPage(Integer maxPerPage)PaginationnextOffset(String nextOffset)Paginationresults(Integer results)voidsetHasMore(Boolean hasMore)voidsetMaxPerPage(Integer maxPerPage)voidsetNextOffset(String nextOffset)voidsetResults(Integer results)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_HAS_MORE
public static final String SERIALIZED_NAME_HAS_MORE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_NEXT_OFFSET
public static final String SERIALIZED_NAME_NEXT_OFFSET
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RESULTS
public static final String SERIALIZED_NAME_RESULTS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MAX_PER_PAGE
public static final String SERIALIZED_NAME_MAX_PER_PAGE
- See Also:
- Constant Field Values
-
-
Method Detail
-
hasMore
public Pagination hasMore(Boolean hasMore)
-
getHasMore
@Nonnull public Boolean getHasMore()
Next page is available- Returns:
- hasMore
-
setHasMore
public void setHasMore(Boolean hasMore)
-
nextOffset
public Pagination nextOffset(String nextOffset)
-
getNextOffset
@Nonnull public String getNextOffset()
Token used to retrieve the next page- Returns:
- nextOffset
-
setNextOffset
public void setNextOffset(String nextOffset)
-
results
public Pagination results(Integer results)
-
getResults
@Nonnull public Integer getResults()
Number of values found in the results minimum: 0- Returns:
- results
-
setResults
public void setResults(Integer results)
-
maxPerPage
public Pagination maxPerPage(Integer maxPerPage)
-
getMaxPerPage
@Nonnull public Integer getMaxPerPage()
Maximal number of entries per page minimum: 0- Returns:
- maxPerPage
-
setMaxPerPage
public void setMaxPerPage(Integer maxPerPage)
-
-