Package org.tmatesoft.sqljet.core.map
Interface ISqlJetMapCursor
-
- All Superinterfaces:
ISqlJetMapIterator
- All Known Implementing Classes:
SqlJetMapCursor
public interface ISqlJetMapCursor extends ISqlJetMapIterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()java.lang.Object[]getKey()ISqlJetMapIndexCursorgetMapIndex()ISqlJetMapTableCursorgetMapTable()java.lang.Object[]getValue()booleangoToKey(java.lang.Object[] key)voidput(java.lang.Object[] key, java.lang.Object[] value)
-
-
-
Method Detail
-
close
void close() throws SqlJetException- Throws:
SqlJetException
-
getKey
java.lang.Object[] getKey() throws SqlJetException- Returns:
- current key.
- Throws:
SqlJetException
-
getValue
java.lang.Object[] getValue() throws SqlJetException- Returns:
- current date.
- Throws:
SqlJetException
-
goToKey
boolean goToKey(java.lang.Object[] key) throws SqlJetException- Parameters:
key-- Returns:
- true if cursor was set to the key specified.
- Throws:
SqlJetException
-
put
void put(java.lang.Object[] key, java.lang.Object[] value) throws SqlJetException- Parameters:
key-value-- Throws:
SqlJetException
-
getMapTable
ISqlJetMapTableCursor getMapTable() throws SqlJetException
- Throws:
SqlJetException
-
getMapIndex
ISqlJetMapIndexCursor getMapIndex() throws SqlJetException
- Throws:
SqlJetException
-
-