Class ObjectStoreIndex
- java.lang.Object
-
- org.openqa.selenium.devtools.indexeddb.model.ObjectStoreIndex
-
public class ObjectStoreIndex extends java.lang.Object
Object store index.
-
-
Constructor Summary
Constructors Constructor Description ObjectStoreIndex(java.lang.String name, KeyPath keyPath, java.lang.Boolean unique, java.lang.Boolean multiEntry)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeyPath
getKeyPath()
Index key path.java.lang.Boolean
getMultiEntry()
If true, index allows multiple entries for a key.java.lang.String
getName()
Index name.java.lang.Boolean
getUnique()
If true, index is unique.
-
-
-
Constructor Detail
-
ObjectStoreIndex
public ObjectStoreIndex(java.lang.String name, KeyPath keyPath, java.lang.Boolean unique, java.lang.Boolean multiEntry)
-
-
Method Detail
-
getName
public java.lang.String getName()
Index name.
-
getKeyPath
public KeyPath getKeyPath()
Index key path.
-
getUnique
public java.lang.Boolean getUnique()
If true, index is unique.
-
getMultiEntry
public java.lang.Boolean getMultiEntry()
If true, index allows multiple entries for a key.
-
-