Class DatabaseWithObjectStores

java.lang.Object
io.webfolder.cdp.type.indexeddb.DatabaseWithObjectStores

public class DatabaseWithObjectStores extends Object
Database with an array of object stores.
  • Constructor Details

    • DatabaseWithObjectStores

      public DatabaseWithObjectStores()
  • Method Details

    • getName

      public String getName()
      Database name.
    • setName

      public void setName(String name)
      Database name.
    • getVersion

      public Double getVersion()
      Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
    • setVersion

      public void setVersion(Double version)
      Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
    • getObjectStores

      public List<ObjectStore> getObjectStores()
      Object stores in this database.
    • setObjectStores

      public void setObjectStores(List<ObjectStore> objectStores)
      Object stores in this database.
    • toString

      public String toString()
      Overrides:
      toString in class Object