com.hp.hpl.jena.rdf.model
Interface NsIterator
- All Superinterfaces:
- ClosableIterator, ExtendedIterator, java.util.Iterator
- public interface NsIterator
- extends ExtendedIterator
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.
- Version:
- Release='$Name: $' Revision='$Revision: 1.3 $' Date='$Date: 2003/06/17 12:51:38 $'
- Author:
- bwm
Method Summary |
java.lang.String |
nextNs()
Return the next namespace name of the iteration. |
Methods inherited from interface java.util.Iterator |
hasNext, next, remove |
nextNs
public java.lang.String nextNs()
- Return the next namespace name of the iteration.
- Returns:
- The next name space URI from the iteration.
- Throws:
NoSuchElementException
- if there are no more to be returned.
Copyright © 2001-2003 Hewlett-Packard. All Rights Reserved.