338339340341342343344345
return valueAvailable; } catch( IOException e ) { throw new CursorException( e ); } }
401402403404405406407408
332333334335336337338339340341342
*/ public Entry get() throws CursorException { if ( ( index < start ) || ( index >= end ) ) { throw new CursorException( I18n.err( I18n.ERR_02009_CURSOR_NOT_POSITIONED ) ); } if ( currentCursor.available() ) { return currentCursor.get();
100101102103104105106107108
{ browser = btree.browse( element ); } catch( IOException e ) { throw new CursorException( e ); } clearValue(); }
152153154155156157158159
clearValue(); // just return } catch( IOException e ) { throw new CursorException( e ); } }
170171172173174175176177
browser = btree.browse(); clearValue(); } catch( IOException e ) { throw new CursorException( e ); } }
187188189190191192193194
{ browser = btree.browse( null ); } catch( IOException e ) { throw new CursorException( e ); } }
238239240241242243244245
return false; } } catch( IOException e ) { throw new CursorException( e ); } }
270271272273274275276277
139140141142143144145146147148149
BTree tree = table.getBTree( values.getBTreeRedirect() ); dupsCursor = new KeyBTreeCursor<V>( tree, table.getValueComparator() ); } catch( IOException e ) { throw new CursorException( e ); } } if ( value == null ) {