1 package com.icl.saxon.om; 2 import com.icl.saxon.expr.XPathException; 3 4 10 11 public interface NodeEnumeration { 12 13 19 20 public boolean hasMoreElements(); 22 28 29 public NodeInfo nextElement() throws XPathException; 30 31 35 36 public boolean isSorted(); 37 42 43 public boolean isReverseSorted(); 44 45 51 52 public boolean isPeer(); 53 54 } 55 56 57 58 | Popular Tags |