Class ResourceIteratorDecorator
- java.lang.Object
-
- org.apache.sling.resourceresolver.impl.helper.ResourceIteratorDecorator
-
-
Constructor Summary
Constructors Constructor Description ResourceIteratorDecorator(ResourceDecoratorTracker tracker, Iterator<org.apache.sling.api.resource.Resource> iterator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
org.apache.sling.api.resource.Resource
next()
void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
ResourceIteratorDecorator
public ResourceIteratorDecorator(ResourceDecoratorTracker tracker, Iterator<org.apache.sling.api.resource.Resource> iterator)
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<org.apache.sling.api.resource.Resource>
- See Also:
Iterator.hasNext()
-
next
public org.apache.sling.api.resource.Resource next()
- Specified by:
next
in interfaceIterator<org.apache.sling.api.resource.Resource>
- See Also:
Iterator.next()
-
remove
public void remove()
- Specified by:
remove
in interfaceIterator<org.apache.sling.api.resource.Resource>
- See Also:
Iterator.remove()
-
-