Package org.tmatesoft.sqljet.core.map
Interface ISqlJetMapIndex
-
- All Known Implementing Classes:
SqlJetMapIndex
public interface ISqlJetMapIndex
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Long
get(java.lang.Object[] key)
ISqlJetMapIndexCursor
getCursor()
void
put(java.lang.Object[] key, java.lang.Long value)
-
-
-
Method Detail
-
put
void put(java.lang.Object[] key, java.lang.Long value) throws SqlJetException
- Parameters:
key
-value
-- Throws:
SqlJetException
-
get
java.lang.Long get(java.lang.Object[] key) throws SqlJetException
- Parameters:
key
-- Returns:
- data stored with the key specified
- Throws:
SqlJetException
-
getCursor
ISqlJetMapIndexCursor getCursor() throws SqlJetException
- Returns:
- cursor instance
- Throws:
SqlJetException
-
-