Package org.tmatesoft.sqljet.core.map
Interface ISqlJetMap
-
- All Known Implementing Classes:
SqlJetMap
public interface ISqlJetMap
- Author:
- TMate Software Ltd., Sergey Scherbina (sergey.scherbina@gmail.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object[]
get(java.lang.Object[] key)
ISqlJetMapCursor
getCursor()
ISqlJetMapIndex
getMapIndex()
ISqlJetMapTable
getMapTable()
void
put(java.lang.Object[] key, java.lang.Object[] value)
-
-
-
Method Detail
-
put
void put(java.lang.Object[] key, java.lang.Object[] value) throws SqlJetException
- Parameters:
key
-value
-- Throws:
SqlJetException
-
get
java.lang.Object[] get(java.lang.Object[] key) throws SqlJetException
- Parameters:
key
-- Returns:
- data stored with the key specified
- Throws:
SqlJetException
-
getCursor
ISqlJetMapCursor getCursor() throws SqlJetException
- Returns:
- cursor instance
- Throws:
SqlJetException
-
getMapTable
ISqlJetMapTable getMapTable() throws SqlJetException
- Throws:
SqlJetException
-
getMapIndex
ISqlJetMapIndex getMapIndex() throws SqlJetException
- Throws:
SqlJetException
-
-