322323324325326327328
if ( valueAvailable ) { return returnedTuple; } throw new InvalidCursorPositionException(); }
418419420421422423424
325326327328329330331
if ( available() ) { return prefetched; } throw new InvalidCursorPositionException(); }
340341342343344345346
if ( currentCursor.available() ) { return currentCursor.get(); } throw new InvalidCursorPositionException(); }
287288289290291292293
if ( valueAvailable ) { return ( E ) tuple.getKey(); } throw new InvalidCursorPositionException(); }
547548549550551552553554555556
{ checkNotClosed( "get()" ); if ( !valueAvailable ) { throw new InvalidCursorPositionException(); } return returnedTuple; }
363364365366367368369
376377378379380381382383384385
241242243244245246247
154155156157158159160
returnedTuple.setBoth( tuple.getKey(), tuple.getValue().getSingleton() ); return returnedTuple; } throw new InvalidCursorPositionException(); }