375376377378379380381
if ( valueAvailable ) { return returnedTuple; } throw new InvalidCursorPositionException(); }
320321322323324325326
401402403404405406407
if ( currentCursor.available() ) { return currentCursor.get(); } throw new InvalidCursorPositionException(); }
243244245246247248249
156157158159160161162
returnedTuple.setBoth( tuple.getKey(), tuple.getValue().getSingleton() ); return returnedTuple; } throw new InvalidCursorPositionException(); }
195196197198199200201
if ( position == Position.ON_NODE ) { return array.get( current ); } throw new InvalidCursorPositionException(); }
183184185186187188189
if ( position == Position.ON_NODE ) { return node.getKey(); } throw new InvalidCursorPositionException(); }
187188189190191192193
if ( available() ) { return wrapped.get(); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_708 ) ); }
505506507508509510511512513514
{ checkNotClosed( "get()" ); if ( !valueAvailable ) { throw new InvalidCursorPositionException(); } return returnedTuple; }
321322323324325326327