SMInputCursor |
SMInputCursor.advance() |
Method that does what getNext() does, but instead of
returning resulting event type, returns this cursor.
|
SMInputCursor |
SMInputCursor.childCursor() |
Method that will create a new nested cursor for iterating
over all (immediate) child nodes of the start element this cursor
currently points to.
|
SMInputCursor |
SMInputCursor.childCursor(SMFilter f) |
Method that will create a new nested cursor for iterating
over all (immediate) child nodes of the start element this cursor
currently points to that are passed by the specified filter.
|
SMInputCursor |
SMInputCursor.childElementCursor() |
Convenience method; equivalent to
childCursor(SMFilterFactory.getElementOnlyFilter());
|
SMInputCursor |
SMInputCursor.childElementCursor(java.lang.String elemLocalName) |
Convenience method; equivalent to
childCursor(SMFilterFactory.getElementOnlyFilter(elemName));
Will only return START_ELEMENT and END_ELEMENT events, whose element's
local name matches given local name, and that does not belong to
a namespace.
|
SMInputCursor |
SMInputCursor.childElementCursor(javax.xml.namespace.QName elemName) |
Convenience method; equivalent to
childCursor(SMFilterFactory.getElementOnlyFilter(elemName));
Will only return START_ELEMENT and END_ELEMENT events, whose element
name matches given qname.
|
SMInputCursor |
SMInputCursor.childMixedCursor() |
Convenience method; equivalent to
childCursor(SMFilterFactory.getMixedFilter());
|
SMInputCursor |
SMFlatteningCursor.constructChildCursor(SMFilter f) |
|
SMInputCursor |
SMHierarchicCursor.constructChildCursor(SMFilter f) |
|
protected abstract SMInputCursor |
SMInputCursor.constructChildCursor(SMFilter f) |
Abstract method that concrete sub-classes implement, and is used
for all instantiation of child cursors by this cursor instance.
|
SMInputCursor |
SMFlatteningCursor.constructDescendantCursor(SMFilter f) |
|
SMInputCursor |
SMHierarchicCursor.constructDescendantCursor(SMFilter f) |
|
protected abstract SMInputCursor |
SMInputCursor.constructDescendantCursor(SMFilter f) |
Abstract method that concrete sub-classes implement, and is used
for all instantiation of descendant cursors by this cursor instance.
|
SMInputCursor |
SMInputCursor.descendantCursor() |
Method that will create a new nested cursor for iterating
over all the descendant (children and grandchildren) nodes of
the start element this cursor currently points to.
|
SMInputCursor |
SMInputCursor.descendantCursor(SMFilter f) |
Method that will create a new nested cursor for iterating
over all the descendant (children and grandchildren) nodes of
the start element this cursor currently points to
that are accepted by the specified filter.
|
SMInputCursor |
SMInputCursor.descendantElementCursor() |
Convenience method; equivalent to
descendantCursor(SMFilterFactory.getElementOnlyFilter());
|
SMInputCursor |
SMInputCursor.descendantElementCursor(java.lang.String elemLocalName) |
Convenience method; equivalent to
descendantCursor(SMFilterFactory.getElementOnlyFilter(elemLocalName)); .
|
SMInputCursor |
SMInputCursor.descendantElementCursor(javax.xml.namespace.QName elemName) |
Convenience method; equivalent to
descendantCursor(SMFilterFactory.getElementOnlyFilter(elemName));
Will only return START_ELEMENT and END_ELEMENT events, whose element
name matches given qname.
|
SMInputCursor |
SMInputCursor.descendantMixedCursor() |
Convenience method; equivalent to
descendantCursor(SMFilterFactory.getMixedFilter());
|