NodeType objects. * * @author Markus Nix * @package phpcr * @subpackage nodetype */ interface NodeTypeIterator extends RangeIterator { /** * Returns the next NodeType in the iteration. * * @return the next NodeType in the iteration. * @throws NoSuchElementException * if iteration has no more NodeTypes. */ public function nextNodeType(); } ?>