Interface NsIterator

  • All Superinterfaces:
    ClosableIterator<java.lang.String>, Closeable, ExtendedIterator<java.lang.String>, java.util.Iterator<java.lang.String>, IteratorCloseable<java.lang.String>
    All Known Implementing Classes:
    NsIteratorImpl

    public interface NsIterator
    extends ExtendedIterator<java.lang.String>
    An iterator which returns namespace URI's.

    RDF iterators are standard Java iterators, except that they have an extra method that returns a specifically typed object, in this case a String representing a namespace URI, and have a close() method that should be called to free resources if the application does not complete the iteration.

    • Method Detail

      • nextNs

        java.lang.String nextNs()
        Return the next namespace name of the iteration.
        Returns:
        The next name space URI from the iteration.
        Throws:
        java.util.NoSuchElementException - if there are no more to be returned.