Frames | No Frames |
Methods which throw type org.codehaus.plexus.util.xml.pull.XmlPullParserException | |
Xpp3Dom | Xpp3DomBuilder.build(InputStream is, String encoding) |
Xpp3Dom | Xpp3DomBuilder.build(InputStream is, String encoding, boolean trim) |
Xpp3Dom | Xpp3DomBuilder.build(Reader reader) |
Xpp3Dom | Xpp3DomBuilder.build(Reader reader, boolean trim) |
Xpp3Dom | |
Xpp3Dom |
Methods which throw type org.codehaus.plexus.util.xml.pull.XmlPullParserException | |
void | MXParser.defineEntityReplacementText(String entityName, String replacementText) Set new value for entity replacement text as defined in
XML 1.0 Section 4.5
Construction of Internal Entity Replacement Text. |
void | XmlPullParser.defineEntityReplacementText(String entityName, String replacementText) Set new value for entity replacement text as defined in
XML 1.0 Section 4.5
Construction of Internal Entity Replacement Text. |
void | |
int | Returns the type of the current event (START_TAG, END_TAG, TEXT, etc.)
|
int | Returns the type of the current event (START_TAG, END_TAG, TEXT, etc.)
|
int | MXParser.getNamespaceCount(int depth) Returns the numbers of elements in the namespace stack for the given
depth. |
int | XmlPullParser.getNamespaceCount(int depth) Returns the numbers of elements in the namespace stack for the given
depth. |
String | MXParser.getNamespacePrefix(int pos) Returns the namespace prefixe for the given position
in the namespace stack. |
String | XmlPullParser.getNamespacePrefix(int pos) Returns the namespace prefixe for the given position
in the namespace stack. |
String | MXParser.getNamespaceUri(int pos) Returns the namespace URI for the given position in the
namespace stack
If the position is out of range, an exception is thrown. |
String | XmlPullParser.getNamespaceUri(int pos) Returns the namespace URI for the given position in the
namespace stack
If the position is out of range, an exception is thrown. |
boolean | Returns true if the current event is START_TAG and the tag
is degenerated
(e.g. |
boolean | Returns true if the current event is START_TAG and the tag
is degenerated
(e.g. |
boolean | Checks whether the current TEXT event contains only whitespace
characters. |
boolean | Checks whether the current TEXT event contains only whitespace
characters. |
char[] | MXParser.lookuEntityReplacement(int entitNameLen) |
char | |
int | 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). |
int | 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). |
int | |
int | Call next() and return event if it is START_TAG or END_TAG
otherwise throw an exception. |
int | Call next() and return event if it is START_TAG or END_TAG
otherwise throw an exception. |
String | If current event is START_TAG then if next element is TEXT then element content is returned
or if next event is END_TAG then empty string is returned, otherwise exception is thrown. |
String | If current event is START_TAG then if next element is TEXT then element content is returned
or if next event is END_TAG then empty string is returned, otherwise exception is thrown. |
int | 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. |
int | 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. |
char | |
void | MXParser.parseCDSect(boolean hadCharData) |
void | |
void | |
int | |
char[] | |
int | |
boolean | |
int | |
int | |
void | MXParser.parseXmlDecl(char ch) |
void | MXParser.parseXmlDeclWithVersion(int versionStart, int versionEnd) |
void | Test if the current event is of the given type and if the
namespace and name do match. |
void | XmlPullParser.require(int type, String namespace, String name) Test if the current event is of the given type and if the
namespace and name do match. |
char | MXParser.requireInput(char ch, char[] input) |
char | |
void | MXParser.setFeature(String name, boolean state) Method setFeature
|
void | XmlPullParser.setFeature(String name, boolean state) Use this call to change the general behaviour of the parser,
such as namespace processing or doctype declaration handling. |
void | XmlPullParser.setInput(InputStream inputStream, String inputEncoding) Sets the input stream the parser is going to process. |
void | Set the input source for parser to the given reader and
resets the parser. |
void | XmlPullParser.setInput(Reader in) Set the input source for parser to the given reader and
resets the parser. |
void | |
void | MXParser.setProperty(String name, Object value) Set the value of a property. |
void | XmlPullParser.setProperty(String name, Object value) Set the value of a property. |
char | |
void | Skip sub tree that is currently porser positioned on. |