Interface ADBXMLStreamReader
-
- All Superinterfaces:
Constants
,XMLStreamConstants
,XMLStreamReader
- All Known Implementing Classes:
ADBDataHandlerStreamReader
,ADBXMLStreamReaderImpl
,NameValueArrayStreamReader
,NameValuePairStreamReader
,NullXMLStreamReader
,WrappingXMLStreamReader
public interface ADBXMLStreamReader extends XMLStreamReader, Constants
-
-
Field Summary
Fields Modifier and Type Field Description static String
ELEMENT_TEXT
-
Fields inherited from interface org.apache.axis2.databinding.utils.Constants
DEFAULT_XSD_NAMESPACE_PREFIX, DEFAULT_XSI_NAMESPACE_PREFIX, INNER_ARRAY_COMPLEX_TYPE_NAME, NIL, OM_ATTRIBUTE_KEY, OM_ELEMENT_KEY, RETURN_WRAPPER, TRUE, XSD_NAMESPACE, XSI_NAMESPACE, XSI_TYPE_ATTRIBUTE
-
Fields inherited from interface javax.xml.stream.XMLStreamConstants
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addNamespaceContext(NamespaceContext nsContext)
add the parent namespace context to this parservoid
init()
Initiate the parser - this will do whatever the needed tasks to initiate the parser and must be called before attempting any specific parsing using this parserboolean
isDone()
Extra method to query the state of the pullparser-
Methods inherited from interface javax.xml.stream.XMLStreamReader
close, getAttributeCount, getAttributeLocalName, getAttributeName, getAttributeNamespace, getAttributePrefix, getAttributeType, getAttributeValue, getAttributeValue, getCharacterEncodingScheme, getElementText, getEncoding, getEventType, getLocalName, getLocation, getName, getNamespaceContext, getNamespaceCount, getNamespacePrefix, getNamespaceURI, getNamespaceURI, getNamespaceURI, getPIData, getPITarget, getPrefix, getProperty, getText, getTextCharacters, getTextCharacters, getTextLength, getTextStart, getVersion, hasName, hasNext, hasText, isAttributeSpecified, isCharacters, isEndElement, isStandalone, isStartElement, isWhiteSpace, next, nextTag, require, standaloneSet
-
-
-
-
Field Detail
-
ELEMENT_TEXT
static final String ELEMENT_TEXT
- See Also:
- Constant Field Values
-
-
Method Detail
-
isDone
boolean isDone()
Extra method to query the state of the pullparser
-
addNamespaceContext
void addNamespaceContext(NamespaceContext nsContext)
add the parent namespace context to this parser
-
init
void init()
Initiate the parser - this will do whatever the needed tasks to initiate the parser and must be called before attempting any specific parsing using this parser
-
-