org.xmldb.api.base
public interface ResourceIterator
Modifier and Type | Method and Description |
---|---|
boolean |
hasMoreResources()
Returns true as long as there are still more resources to be iterated.
|
Resource |
nextResource()
Returns the next
Resource instance in the iterator. |
boolean hasMoreResources() throws XMLDBException
XMLDBException
- with expected error codes.ErrorCodes.VENDOR_ERROR
for any vendor
specific errors that occur.Resource nextResource() throws XMLDBException
Resource
instance in the iterator.Resource
instance in the iterator.XMLDBException
- with expected error codes.ErrorCodes.VENDOR_ERROR
for any vendor
specific errors that occur.ErrorCodes.NO_SUCH_RESOURCE
if the resource iterator is
empty or all resources have already been retrieved.