public String nextElement()

in src/main/java/org/apache/sling/i18n/impl/ResourceBundleEnumeration.java [46:54]


    public String nextElement() {
        if (!hasMoreElements()) {
            throw new NoSuchElementException();
        }

        String result = next;
        next = seek();
        return result;
    }