C D E F G I N O P R S T X

C

CDSECT - Static variable in interface org.xmlpull.v1.XmlPullParser
TOKEN: CDATA sections was just read (this token is available only from nextToken()).
COMMENT - Static variable in interface org.xmlpull.v1.XmlPullParser
TOKEN: XML comment was just read and getText() will return value inside comment (this token is available only from nextToken()).

D

DEFAULT_PROPERTY_NAME - Static variable in class org.xmlpull.v1.XmlPullParserFactory
name of parser factory property that should be used for system property or in general to retrieve parser factory clas sname from configuration (currently name of peroperty is org.xmlpull.v1.XmlPullParserFactory)
defineEntityReplacementText(String, String) - Method in interface org.xmlpull.v1.XmlPullParser
Set new value for entity replacement text as defined in XML 1.0 Section 4.5 Construction of Internal Entity Replacement Text.
DOCDECL - Static variable in interface org.xmlpull.v1.XmlPullParser
TOKEN: XML DOCTYPE declaration was just read and getText() will return text that is inside DOCDECL (this token is available only from nextToken()).

E

END_DOCUMENT - Static variable in interface org.xmlpull.v1.XmlPullParser
EVENT TYPE and TOKEN: logical end of xml document (available from next() and nextToken()).
END_TAG - Static variable in interface org.xmlpull.v1.XmlPullParser
EVENT TYPE and TOKEN: end tag was just read (available from next() and nextToken()).
ENTITY_REF - Static variable in interface org.xmlpull.v1.XmlPullParser
TOKEN: Entity reference was just read (this token is available only from nextToken()).

F

FEATURE_PROCESS_DOCDECL - Static variable in interface org.xmlpull.v1.XmlPullParser
FEATURE: Processing of DOCDECL is by default set to false and if DOCDECL is encountered it is reported by nextToken() and ignored by next().
FEATURE_PROCESS_NAMESPACES - Static variable in interface org.xmlpull.v1.XmlPullParser
FEATURE: Processing of namespaces is by default set to false.
FEATURE_REPORT_NAMESPACE_ATTRIBUTES - Static variable in interface org.xmlpull.v1.XmlPullParser
FEATURE: Report namespace attributes also - they can be distinguished looking for prefix == "xmlns" or prefix == null and name == "xmlns it is off by default and only meaningful when FEATURE_PROCESS_NAMESPACES feature is on.
FEATURE_VALIDATION - Static variable in interface org.xmlpull.v1.XmlPullParser
FEATURE: Report all validation errors as defined by XML 1.0 sepcification (implies that FEATURE_PROCESS_DOCDECL is true and both internal and external DOCDECL will be processed).

G

getAttributeCount() - Method in interface org.xmlpull.v1.XmlPullParser
Returns the number of attributes on the current element; -1 if the current event is not START_TAG
getAttributeName(int) - Method in interface org.xmlpull.v1.XmlPullParser
Returns the local name of the specified attribute if namespaces are enabled or just attribute name if namespaces are disabled.
getAttributeNamespace(int) - Method in interface org.xmlpull.v1.XmlPullParser
Returns the namespace URI of the specified attribute number index (starts from 0).
getAttributePrefix(int) - Method in interface org.xmlpull.v1.XmlPullParser
Returns the prefix of the specified attribute Returns null if the element has no prefix.
getAttributeValue(int) - Method in interface org.xmlpull.v1.XmlPullParser
Returns the given attributes value Throws an IndexOutOfBoundsException if the index is out of range or current event type is not START_TAG.
getAttributeValue(String, String) - Method in interface org.xmlpull.v1.XmlPullParser
Returns the attributes value identified by namespace URI and namespace localName.
getColumnNumber() - Method in class org.xmlpull.v1.XmlPullParserException
 
getColumnNumber() - Method in interface org.xmlpull.v1.XmlPullParser
Current column: numbering starts from 0 (returned when parser is in START_DOCUMENT state!)
getDepth() - Method in interface org.xmlpull.v1.XmlPullParser
Returns the current depth of the element.
getDetail() - Method in class org.xmlpull.v1.XmlPullParserException
 
getEventType() - Method in interface org.xmlpull.v1.XmlPullParser
Returns the type of the current event (START_TAG, END_TAG, TEXT, etc.)
getFeature(String) - Method in class org.xmlpull.v1.XmlPullParserFactory
Return the current value of the feature with given name.
getFeature(String) - Method in interface org.xmlpull.v1.XmlPullParser
Return the current value of the feature with given name.
getLineNumber() - Method in class org.xmlpull.v1.XmlPullParserException
 
getLineNumber() - Method in interface org.xmlpull.v1.XmlPullParser
Current line number: numebering starts from 1.
getMessage() - Method in class org.xmlpull.v1.XmlPullParserException
 
getName() - Method in interface org.xmlpull.v1.XmlPullParser
Returns the (local) name of the current element when namespaces are enabled or raw name when namespaces are disabled.
getNamespace() - Method in interface org.xmlpull.v1.XmlPullParser
Returns the namespace URI of the current element.
getNamespace(String) - Method in interface org.xmlpull.v1.XmlPullParser
Return uri for the given prefix.
getNamespaceCount(int) - Method in interface org.xmlpull.v1.XmlPullParser
Return position in stack of first namespace slot for element at passed depth.
getNamespacePrefix(int) - Method in interface org.xmlpull.v1.XmlPullParser
Return namespace prefixes for position pos in namespace stack
getNamespaceUri(int) - Method in interface org.xmlpull.v1.XmlPullParser
Return namespace URIs for position pos in namespace stack If pos is out of range it throw exception.
getPositionDescription() - Method in interface org.xmlpull.v1.XmlPullParser
Short text describing parser position, including a description of the current event and data source if known and if possible what parser was seeing lastly in input.
getPrefix() - Method in interface org.xmlpull.v1.XmlPullParser
Returns the prefix of the current element or null if elemet has no prefix (is in defualt namespace).
getProperty(String) - Method in interface org.xmlpull.v1.XmlPullParser
Look up the value of a property.
getText() - Method in interface org.xmlpull.v1.XmlPullParser
Read text content of the current event as String.
getTextCharacters(int[]) - Method in interface org.xmlpull.v1.XmlPullParser
Get the buffer that contains text of the current event and start offset of text is passed in first slot of input int array and its length is in second slot.

I

IGNORABLE_WHITESPACE - Static variable in interface org.xmlpull.v1.XmlPullParser
TOKEN: Ignorable whitespace was just read (this token is available only from nextToken()).
isEmptyElementTag() - Method in interface org.xmlpull.v1.XmlPullParser
Returns true if the current event is START_TAG and the tag is degenerated (e.g.
isNamespaceAware() - Method in class org.xmlpull.v1.XmlPullParserFactory
Indicates whether or not the factory is configured to produce parsers which are namespace aware.
isValidating() - Method in class org.xmlpull.v1.XmlPullParserFactory
Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse.
isWhitespace() - Method in interface org.xmlpull.v1.XmlPullParser
Check if current TEXT event contains only whitespace characters.

N

newInstance() - Static method in class org.xmlpull.v1.XmlPullParserFactory
Create a new instance of a PullParserFactory used to create XML pull parser (see description of class for more details).
newInstance(Class) - Static method in class org.xmlpull.v1.XmlPullParserFactory
Get a new instance of a PullParserFactory used to create XML Pull Parser.
newInstance(Class, String) - Static method in class org.xmlpull.v1.XmlPullParserFactory
Get instance of XML pull parser factiry.
newInstance(String) - Static method in class org.xmlpull.v1.XmlPullParserFactory
Get a new instance of a PullParserFactory from given class name.
newPullParser() - Method in class org.xmlpull.v1.XmlPullParserFactory
Creates a new instance of a XML Pull Parser using the currently configured factory parameters.
next() - Method in interface org.xmlpull.v1.XmlPullParser
Get next parsing event - element content wil be coalesced and only one TEXT event must be returned for whole element content (comments and processing instructions will be ignored and emtity references must be expanded or exception mus be thrown if entity reerence can not be exapnded).
nextToken() - Method in interface org.xmlpull.v1.XmlPullParser
This method works similarly to next() but will expose additional event types (COMMENT, CDSECT, DOCDECL, ENTITY_REF, PROCESSING_INSTRUCTION, or IGNORABLE_WHITESPACE) if they are available in input.
NO_NAMESPACE - Static variable in interface org.xmlpull.v1.XmlPullParser
This constant represents lack of or default namespace (empty string "")

O

org.xmlpull.v1 - package org.xmlpull.v1
 

P

printStackTrace() - Method in class org.xmlpull.v1.XmlPullParserException
 
PROCESSING_INSTRUCTION - Static variable in interface org.xmlpull.v1.XmlPullParser
TOKEN: XML processing instruction declaration was just read and getText() will return text that is inside processing instruction (this token is available only from nextToken()).

R

readText() - Method in interface org.xmlpull.v1.XmlPullParser
If the current event is text, the value of getText is returned and next() is called.
require(int, String, String) - Method in interface org.xmlpull.v1.XmlPullParser
test if the current event is of the given type and if the namespace and name do match.

S

setDetail(Throwable) - Method in class org.xmlpull.v1.XmlPullParserException
 
setFeature(String, boolean) - Method in class org.xmlpull.v1.XmlPullParserFactory
Set the features to be set when XML Pull Parser is created by this factory.
setFeature(String, boolean) - Method in interface org.xmlpull.v1.XmlPullParser
Use this call to change the general behaviour of the parser, such as namespace processing or doctype declaration handling.
setInput(Reader) - Method in interface org.xmlpull.v1.XmlPullParser
Set the input for parser.
setNamespaceAware(boolean) - Method in class org.xmlpull.v1.XmlPullParserFactory
Specifies that the parser produced by this factory will provide support for XML namespaces.
setProperty(String, Object) - Method in interface org.xmlpull.v1.XmlPullParser
Set the value of a property.
setValidating(boolean) - Method in class org.xmlpull.v1.XmlPullParserFactory
Specifies that the parser produced by this factory will be validating By default the value of this is set to false.
START_DOCUMENT - Static variable in interface org.xmlpull.v1.XmlPullParser
EVENT TYPE and TOKEN: signalize that parser is at the very beginning of the document and nothing was read yet - the parser is before first call to next() or nextToken() (available from next() and nextToken()).
START_TAG - Static variable in interface org.xmlpull.v1.XmlPullParser
EVENT TYPE and TOKEN: start tag was just read (available from next() and nextToken()).

T

TEXT - Static variable in interface org.xmlpull.v1.XmlPullParser
EVENT TYPE and TOKEN: character data was read and will be available by call to getText() (available from next() and nextToken()).
TYPES - Static variable in interface org.xmlpull.v1.XmlPullParser
Use this array to convert evebt type number (such as START_TAG) to to string giving event name, ex: "START_TAG" == TYPES[START_TAG]

X

XmlPullParser - interface org.xmlpull.v1.XmlPullParser.
XML Pull Parser is an interface that defines parsing functionlity provided in XMLPULL V1 API (visit this website to learn more about API and its implementations).
XmlPullParserException - exception org.xmlpull.v1.XmlPullParserException.
This exception is thrown to signal XML Pull Parser related faults.
XmlPullParserException() - Constructor for class org.xmlpull.v1.XmlPullParserException
 
XmlPullParserException(String) - Constructor for class org.xmlpull.v1.XmlPullParserException
 
XmlPullParserException(String, int, int) - Constructor for class org.xmlpull.v1.XmlPullParserException
 
XmlPullParserException(String, Throwable) - Constructor for class org.xmlpull.v1.XmlPullParserException
 
XmlPullParserException(String, XmlPullParser) - Constructor for class org.xmlpull.v1.XmlPullParserException
 
XmlPullParserFactory - class org.xmlpull.v1.XmlPullParserFactory.
This class is used to create implementations of XML Pull Parser defined in XMPULL V1 API.

C D E F G I N O P R S T X

This XMLPULL V1 API is free, enjoy! http://www.xmlpull.org/