1 package net.sf.saxon.om; 2 import net.sf.saxon.trans.XPathException; 3 4 25 26 public interface SequenceIterator { 27 28 39 40 public Item next() throws XPathException; 41 42 52 53 public Item current(); 54 55 75 76 public int position(); 77 78 93 94 public SequenceIterator getAnother() throws XPathException; 95 96 104 105 public int getProperties(); 106 107 113 114 public static final int GROUNDED = 1<<0; 115 116 122 123 public static final int LAST_POSITION_FINDER = 1<<1; 124 125 131 132 public static final int LOOKAHEAD = 1<<2; 133 134 } 135 136 137 | Popular Tags |