| java.lang.Object net.sf.saxon.om.AxisIteratorImpl net.sf.saxon.tree.AttributeEnumeration
Method Summary | |
public SequenceIterator | getAnother() | public int | getProperties() Get properties of this iterator, as a bit-significant integer.
the properties of this iterator. | public boolean | hasNext() Test if there are mode nodes still to come. | public Item | next() Get the next node in the iteration, or null if there are no more. |
AttributeEnumeration | public AttributeEnumeration(NodeImpl node, NodeTest nodeTest)(Code) | | Constructor
node: the element whose attributes are required. This may be any type of node,but if it is not an element the enumeration will be empty nodeTest: condition to be applied to the names of the attributes selected |
getProperties | public int getProperties()(Code) | | Get properties of this iterator, as a bit-significant integer.
the properties of this iterator. This will be some combination ofproperties such as GROUNDED, LAST_POSITION_FINDER,and LOOKAHEAD. It is alwaysacceptable to return the value zero, indicating that there are no known special properties.It is acceptable for the properties of the iterator to change depending on its state. |
hasNext | public boolean hasNext()(Code) | | Test if there are mode nodes still to come.
("elements" is used here in the sense of the Java enumeration class, not in the XML sense)
|
next | public Item next()(Code) | | Get the next node in the iteration, or null if there are no more.
|
|
|