Class IDBIndex
- java.lang.Object
-
- net.lax1dude.eaglercraft.v1_8.internal.indexeddb.IDBIndex
-
- All Implemented Interfaces:
IDBCursorSource,org.teavm.jso.JSObject
public abstract class IDBIndex extends java.lang.Object implements org.teavm.jso.JSObject, IDBCursorSource
-
-
Constructor Summary
Constructors Constructor Description IDBIndex()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract IDBCountRequestcount()abstract IDBCountRequestcount(org.teavm.jso.JSObject key)abstract IDBGetRequestget(org.teavm.jso.JSObject key)abstract IDBGetRequestgetKey(org.teavm.jso.JSObject key)java.lang.String[]getKeyPath()abstract java.lang.StringgetName()abstract booleanisMultiEntry()abstract booleanisUnique()abstract IDBCursorRequestopenCursor()abstract IDBCursorRequestopenCursor(IDBKeyRange range)abstract IDBCursorRequestopenKeyCursor()
-
-
-
Method Detail
-
getName
public abstract java.lang.String getName()
-
getKeyPath
public final java.lang.String[] getKeyPath()
-
isMultiEntry
public abstract boolean isMultiEntry()
-
isUnique
public abstract boolean isUnique()
-
openCursor
public abstract IDBCursorRequest openCursor()
-
openCursor
public abstract IDBCursorRequest openCursor(IDBKeyRange range)
-
openKeyCursor
public abstract IDBCursorRequest openKeyCursor()
-
get
public abstract IDBGetRequest get(org.teavm.jso.JSObject key)
-
getKey
public abstract IDBGetRequest getKey(org.teavm.jso.JSObject key)
-
count
public abstract IDBCountRequest count(org.teavm.jso.JSObject key)
-
count
public abstract IDBCountRequest count()
-
-