Class BitbucketPageEntity<T>

java.lang.Object
com.atlassian.bamboo.plugins.bitbucket.rest.entity.BitbucketPageEntity<T>

public class BitbucketPageEntity<T> extends Object
  • Constructor Details

    • BitbucketPageEntity

      public BitbucketPageEntity(int size, int limit, boolean lastPage, int start, @Nullable @Nullable Integer nextPageStart, Iterable<T> values)
  • Method Details

    • singlePage

      public static <T> BitbucketPageEntity<T> singlePage(Iterable<T> values)
    • getSize

      public int getSize()
    • getLimit

      public int getLimit()
    • isLastPage

      public boolean isLastPage()
    • getValues

      public Iterable<T> getValues()
    • setValues

      public void setValues(Iterable<T> values)
    • getStart

      public int getStart()
    • getNextPageStart

      @Nullable public @Nullable Integer getNextPageStart()