public Resource next()

in src/main/java/org/apache/sling/superimposing/impl/SuperimposingResourceIterator.java [56:63]


    public Resource next() {
        if (!hasNext()) {
            throw new NoSuchElementException();
        }
        final Resource current = next;
        seek();
        return current;
    }