265266267268269270271
if ( valueAvailable ) { return returnedTuple; } throw new InvalidCursorPositionException(); }
375376377378379380381
if( list.get( index ).available() ) { return ( ClonedServerEntry ) list.get( index ).get(); } throw new InvalidCursorPositionException(); }
319320321322323324325
if ( available() ) { return prefetched; } throw new InvalidCursorPositionException(); }
156157158159160161162
if ( available ) { return wrapped.get(); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_708 ) ); }
296297298299300301302
if ( available ) { return cursor.get(); } throw new InvalidCursorPositionException( I18n.err( I18n.ERR_708 ) ); }
245246247248249250251
203204205206207208209
272273274275276277278
450451452453454455456457458459
{ checkNotClosed( "get()" ); if ( ! valueAvailable ) { throw new InvalidCursorPositionException(); } return returnedTuple; }
142143144145146147148149150151
*/ public Response get() throws Exception { if ( !available() ) { throw new InvalidCursorPositionException(); } return response; }