public class ElementNameTracker extends PullFilter
currentEvent
ATOMIC_VALUE, ATTRIBUTE, COMMENT, END_DOCUMENT, END_ELEMENT, END_OF_INPUT, NAMESPACE, PROCESSING_INSTRUCTION, START_DOCUMENT, START_ELEMENT, START_OF_INPUT, TEXT
Constructor and Description |
---|
ElementNameTracker(PullProvider base) |
Modifier and Type | Method and Description |
---|---|
NodeName |
getNodeName()
Get the node name identifying the name of the current node.
|
int |
next()
Get the next event.
|
close, current, getAtomicValue, getAttributes, getNamePool, getNamespaceDeclarations, getPipelineConfiguration, getSchemaType, getSourceLocator, getStringValue, getUnderlyingProvider, getUnparsedEntities, setPipelineConfiguration, skipToMatchingEnd
public ElementNameTracker(PullProvider base)
public int next() throws XPathException
Note that a subclass that overrides this method is responsible for ensuring that current() works properly. This can be achieved by setting the field currentEvent to the event returned by any call on next().
next
in interface PullProvider
next
in class PullFilter
PullProvider.END_OF_INPUT
is returned at the end of the sequence.XPathException
- if a dynamic error occurspublic NodeName getNodeName()
PullProvider.START_ELEMENT
, PullProvider.PROCESSING_INSTRUCTION
,
PullProvider.ATTRIBUTE
, or PullProvider.NAMESPACE
events. With some PullProvider implementations,
including this one, it can also be used after PullProvider.END_ELEMENT
: in fact, that is the
main purpose of this class.
If called at other times, the result is undefined and may result in an IllegalStateException.
If called when the current node is an unnamed namespace node (a node representing the default namespace)
the returned value is -1.getNodeName
in interface PullProvider
getNodeName
in class PullFilter
Copyright (c) 2004-2018 Saxonica Limited. All rights reserved.