Class BitbucketPageEntity<T>
- java.lang.Object
-
- com.atlassian.bamboo.plugins.bitbucket.rest.entity.BitbucketPageEntity<T>
-
public class BitbucketPageEntity<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description BitbucketPageEntity(int size, int limit, boolean lastPage, int start, @Nullable Integer nextPageStart, Iterable<T> values)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getLimit()
@Nullable Integer
getNextPageStart()
int
getSize()
int
getStart()
Iterable<T>
getValues()
boolean
isLastPage()
void
setValues(Iterable<T> values)
static <T> BitbucketPageEntity<T>
singlePage(Iterable<T> values)
-
-
-
Method Detail
-
singlePage
public static <T> BitbucketPageEntity<T> singlePage(Iterable<T> values)
-
getSize
public int getSize()
-
getLimit
public int getLimit()
-
isLastPage
public boolean isLastPage()
-
getStart
public int getStart()
-
getNextPageStart
@Nullable public @Nullable Integer getNextPageStart()
-
-