Package org.tmatesoft.sqljet.core.map
Interface ISqlJetMapIndexCursor
-
- All Superinterfaces:
ISqlJetMapIterator
- All Known Implementing Classes:
SqlJetMapIndexCursor
public interface ISqlJetMapIndexCursor extends ISqlJetMapIterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()java.lang.Object[]getKey()java.lang.LonggetValue()booleangoToKey(java.lang.Object[] key)voidput(java.lang.Object[] key, java.lang.Long 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.Long 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.Long value) throws SqlJetException- Parameters:
key-value-- Throws:
SqlJetException
-
-