400401402403404405406
if ( currentCursor.available() ) { return currentCursor.get(); } throw new InvalidCursorPositionException(); }
325326327328329330331
if ( available() ) { return prefetched; } throw new InvalidCursorPositionException(); }
377378379380381382383384385386
{ checkNotClosed( "get()" ); if ( !valueAvailable ) { throw new InvalidCursorPositionException(); } return returnedTuple; }
161162163164165166167168169170
*/ public Response get() throws InvalidCursorPositionException { if ( !available() ) { throw new InvalidCursorPositionException(); } return response; }
138139140141142143144145146147148
*/ public Entry get() throws CursorException { if ( !searchCursor.available() ) { throw new InvalidCursorPositionException(); } try { do
242243244245246247248
if ( valueAvailable ) { return returnedTuple; } throw new InvalidCursorPositionException(); }
154155156157158159160
returnedTuple.setBoth( tuple.getKey(), tuple.getValue().getSingleton() ); return returnedTuple; } throw new InvalidCursorPositionException(); }
194195196197198199200
if ( position == Position.ON_NODE ) { return array.get( current ); } throw new InvalidCursorPositionException(); }
182183184185186187188
if ( position == Position.ON_NODE ) { return node.getKey(); } throw new InvalidCursorPositionException(); }
162163164165166167168169170171