Package org.apache.jackrabbit.webdav
Interface DavResourceIterator
-
- All Superinterfaces:
java.util.Iterator<DavResource>
- All Known Implementing Classes:
DavResourceIteratorImpl
public interface DavResourceIterator extends java.util.Iterator<DavResource>
DavResourceIterator extends theIterator
interface. Additional METHODS allow to retrieve the nextDavResource
from the iterator and the iterators size.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DavResource
nextResource()
Returns the nextDavResource
in the iteratorint
size()
Return the number ofDavResource
s in the iterator.
-
-
-
Method Detail
-
nextResource
DavResource nextResource()
Returns the nextDavResource
in the iterator- Returns:
- the next
DavResource
-
size
int size()
Return the number ofDavResource
s in the iterator.- Returns:
- number of elements in the iterator.
-
-