Class DatabaseWithObjectStores
- java.lang.Object
-
- org.openqa.selenium.devtools.indexeddb.model.DatabaseWithObjectStores
-
public class DatabaseWithObjectStores extends java.lang.Object
Database with an array of object stores.
-
-
Constructor Summary
Constructors Constructor Description DatabaseWithObjectStores(java.lang.String name, java.lang.Number version, java.util.List<ObjectStore> objectStores)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Database name.java.util.List<ObjectStore>
getObjectStores()
Object stores in this database.java.lang.Number
getVersion()
Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
-
-
-
Constructor Detail
-
DatabaseWithObjectStores
public DatabaseWithObjectStores(java.lang.String name, java.lang.Number version, java.util.List<ObjectStore> objectStores)
-
-
Method Detail
-
getName
public java.lang.String getName()
Database name.
-
getVersion
public java.lang.Number getVersion()
Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
-
getObjectStores
public java.util.List<ObjectStore> getObjectStores()
Object stores in this database.
-
-