Class PaginatedDto<T>
- java.lang.Object
-
- jetbrains.buildServer.pipeline.dto.PaginatedDto<T>
-
public class PaginatedDto<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description PaginatedDto(Collection<T> values, String nextPage, Integer totalCount, Boolean hasMore)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getHasMore()
String
getNextPage()
Integer
getTotalCount()
Collection<T>
getValues()
int
hashCode()
-
-
-
Constructor Detail
-
PaginatedDto
public PaginatedDto(@NotNull Collection<T> values, @Nullable String nextPage, @Nullable Integer totalCount, @Nullable Boolean hasMore)
-
-
Method Detail
-
getValues
@NotNull public Collection<T> getValues()
-
getNextPage
@Nullable public String getNextPage()
-
getTotalCount
@Nullable public Integer getTotalCount()
-
getHasMore
@Nullable public Boolean getHasMore()
-
-