Class KiiListResult<T>


  • public class KiiListResult<T>
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPaginationKey()
      Gets the pagination key to retrieve the pending results.
      java.util.List<T> getResult()
      Gets the list of results
      boolean hasNext()  
      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getResult

        @NonNull
        public java.util.List<T> getResult()
        Gets the list of results
        Returns:
        Returns empty list if there's no results.
      • getPaginationKey

        @Nullable
        public java.lang.String getPaginationKey()
        Gets the pagination key to retrieve the pending results.
        Returns:
        Returns null if hasNext returns false.
      • hasNext

        public boolean hasNext()
        Returns:
        true if there are pending results.