200201202203204205206
if ( valueAvailable ) { return returnedTuple; } throw new InvalidCursorPositionException(); }
117118119120121122123
returnedTuple.setBoth( tuple.getKey(), tuple.getValue().getSingleton() ); return returnedTuple; } throw new InvalidCursorPositionException(); }
449450451452453454455456457458
{ checkNotClosed( "get()" ); if ( ! valueAvailable ) { throw new InvalidCursorPositionException(); } return returnedTuple; }
304305306307308309310
177178179180181182183
if ( position == Position.ON_NODE ) { return array.get( current ); } throw new InvalidCursorPositionException(); }
147148149150151152153
if ( position == Position.ON_NODE ) { return node.getKey(); } throw new InvalidCursorPositionException(); }
148149150151152153154155156157
*/ public Response get() throws Exception { if ( !available() ) { throw new InvalidCursorPositionException(); } return response; }
121122123124125126127128129130131
*/ public Entry get() throws Exception { if ( !searchCursor.available() ) { throw new InvalidCursorPositionException(); } do { if ( response instanceof SearchResultEntry )
374375376377378379380
if ( list.get( index ).available() ) { return list.get( index ).get(); } throw new InvalidCursorPositionException(); }
319320321322323324325
if ( available() ) { return prefetched; } throw new InvalidCursorPositionException(); }