public class RangeResultObjectProvider extends java.lang.Object implements ResultObjectProvider
| Constructor and Description |
|---|
RangeResultObjectProvider(ResultObjectProvider delegate,
long startIdx,
long endIdx)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
absolute(int pos)
Move to the given 0-based position.
|
void |
close()
Free the resources associated with this provider.
|
ResultObjectProvider |
getDelegate() |
java.lang.Object |
getResultObject()
Instantiate the current result object.
|
void |
handleCheckedException(java.lang.Exception e)
Any checked exceptions that are thrown will be passed to this method.
|
boolean |
next()
Advance the input to the next position.
|
void |
open()
Open the result.
|
void |
reset()
Reset this provider.
|
int |
size()
Return the number of items in the input, or
Integer.MAX_VALUE
if the size in unknown. |
boolean |
supportsRandomAccess()
Return true if this provider supports random access.
|
public RangeResultObjectProvider(ResultObjectProvider delegate, long startIdx, long endIdx)
delegate - the result object provider to delegate tostartIdx - 0-based inclusive start index of the range
to present; must be < Integer.MAX_VALUEendIdx - 0-based exclusive end index of the range to
present; must be < Integer.MAX_VALUE, or Long.MAX_VALUE for no limitpublic boolean supportsRandomAccess()
ResultObjectProvidersupportsRandomAccess in interface ResultObjectProviderpublic void open()
throws java.lang.Exception
ResultObjectProviderResultObjectProvider.next(), ResultObjectProvider.absolute(int), or ResultObjectProvider.size().open in interface ResultObjectProviderjava.lang.Exceptionpublic java.lang.Object getResultObject()
throws java.lang.Exception
ResultObjectProviderResultObjectProvider.next() or ResultObjectProvider.absolute(int).getResultObject in interface ResultObjectProviderjava.lang.Exceptionpublic boolean next()
throws java.lang.Exception
ResultObjectProvidertrue if
there is more data; otherwise false.next in interface ResultObjectProviderjava.lang.Exceptionpublic boolean absolute(int pos)
throws java.lang.Exception
ResultObjectProvidertrue if there is data at this position;
otherwise false. This may be invoked in place of
ResultObjectProvider.next().absolute in interface ResultObjectProviderjava.lang.Exceptionpublic int size()
throws java.lang.Exception
ResultObjectProviderInteger.MAX_VALUE
if the size in unknown.size in interface ResultObjectProviderjava.lang.Exceptionpublic void reset()
throws java.lang.Exception
ResultObjectProviderreset in interface ResultObjectProviderjava.lang.Exceptionpublic void close()
throws java.lang.Exception
ResultObjectProviderclose in interface ResultObjectProviderclose in interface Closeablejava.lang.Exceptionpublic void handleCheckedException(java.lang.Exception e)
ResultObjectProviderhandleCheckedException in interface ResultObjectProviderpublic ResultObjectProvider getDelegate()
Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.