240241242243244245246
if ( available ) { return cursors.get( cursorIndex ).get(); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_708 ) ); }
195196197198199200201
if ( inRangeOnValue() ) { return tuple.setBoth( key, values.get( pos ) ); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_701, pos, ( values.size() - 1 ) ) ); }
156157158159160161162
if ( available ) { return wrapped.get(); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_708 ) ); }
295296297298299300301
if ( available ) { return cursor.get(); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_708 ) ); }
151152153154155156157
if ( available ) { return ndnCursor.get(); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_708 ) ); }
331332333334335336337338339340
{ checkNotClosed( "get()" ); if ( ! valueAvailable ) { throw new InvalidCursorPositionException(); } return returnedTuple; }
155156157158159160161162163164
*/ public Response get() throws Exception { if ( !available() ) { throw new InvalidCursorPositionException(); } return response; }
128129130131132133134135136137138
*/ public Entry get() throws Exception { if ( !searchCursor.available() ) { throw new InvalidCursorPositionException(); } do { if ( response instanceof SearchResultEntry )
132133134135136137138
returnedTuple.setKey( node.key ); returnedTuple.setValue( node.value ); return returnedTuple; } throw new InvalidCursorPositionException(); }
206207208209210211212
if ( valueAvailable ) { return returnedTuple; } throw new InvalidCursorPositionException(); }