Class ObjectStore
- java.lang.Object
-
- org.openqa.selenium.devtools.indexeddb.model.ObjectStore
-
public class ObjectStore extends java.lang.Object
Object store.
-
-
Constructor Summary
Constructors Constructor Description ObjectStore(java.lang.String name, KeyPath keyPath, java.lang.Boolean autoIncrement, java.util.List<ObjectStoreIndex> indexes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Boolean
getAutoIncrement()
If true, object store has auto increment flag set.java.util.List<ObjectStoreIndex>
getIndexes()
Indexes in this object store.KeyPath
getKeyPath()
Object store key path.java.lang.String
getName()
Object store name.
-
-
-
Constructor Detail
-
ObjectStore
public ObjectStore(java.lang.String name, KeyPath keyPath, java.lang.Boolean autoIncrement, java.util.List<ObjectStoreIndex> indexes)
-
-
Method Detail
-
getName
public java.lang.String getName()
Object store name.
-
getKeyPath
public KeyPath getKeyPath()
Object store key path.
-
getAutoIncrement
public java.lang.Boolean getAutoIncrement()
If true, object store has auto increment flag set.
-
getIndexes
public java.util.List<ObjectStoreIndex> getIndexes()
Indexes in this object store.
-
-