org.tmatesoft.sqljet.core.map
Interface ISqlJetMapIndexCursor

All Superinterfaces:
ISqlJetMapIterator
All Known Implementing Classes:
SqlJetMapIndexCursor

public interface ISqlJetMapIndexCursor
extends ISqlJetMapIterator


Method Summary
 void close()
           
 java.lang.Object[] getKey()
           
 java.lang.Long getValue()
           
 boolean goToKey(java.lang.Object[] key)
           
 void put(java.lang.Object[] key, java.lang.Long value)
           
 
Methods inherited from interface org.tmatesoft.sqljet.core.map.ISqlJetMapIterator
eof, first, last, next, previous
 

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