Class IndexedDB.RequestDataResponse

  • Enclosing class:
    IndexedDB

    public static class IndexedDB.RequestDataResponse
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      RequestDataResponse​(java.util.List<DataEntry> objectStoreDataEntries, java.lang.Boolean hasMore)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Boolean getHasMore()
      If true, there are more entries to fetch in the given range.
      java.util.List<DataEntry> getObjectStoreDataEntries()
      Array of object store data entries.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RequestDataResponse

        public RequestDataResponse​(java.util.List<DataEntry> objectStoreDataEntries,
                                   java.lang.Boolean hasMore)
    • Method Detail

      • getObjectStoreDataEntries

        public java.util.List<DataEntry> getObjectStoreDataEntries()
        Array of object store data entries.
      • getHasMore

        public java.lang.Boolean getHasMore()
        If true, there are more entries to fetch in the given range.