Package | Description |
---|---|
org.codehaus.plexus.util.xml.pull |
Modifier and Type | Method and Description |
---|---|
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 |
MXParser.defineEntityReplacementText(String entityName,
String replacementText) |
int |
XmlPullParser.getEventType() |
int |
MXParser.getEventType() |
int |
XmlPullParser.getNamespaceCount(int depth) |
int |
MXParser.getNamespaceCount(int depth) |
String |
XmlPullParser.getNamespacePrefix(int pos) |
String |
MXParser.getNamespacePrefix(int pos) |
String |
XmlPullParser.getNamespaceUri(int pos) |
String |
MXParser.getNamespaceUri(int pos) |
boolean |
XmlPullParser.isEmptyElementTag() |
boolean |
MXParser.isEmptyElementTag() |
boolean |
XmlPullParser.isWhitespace() |
boolean |
MXParser.isWhitespace() |
int |
XmlPullParser.next() |
int |
MXParser.next() |
int |
XmlPullParser.nextTag()
Call next() and return event if it is START_TAG or END_TAG otherwise throw an exception.
|
int |
MXParser.nextTag() |
String |
XmlPullParser.nextText()
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 |
MXParser.nextText() |
int |
XmlPullParser.nextToken()
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 |
MXParser.nextToken() |
int |
MXParser.parseEndTag() |
int |
MXParser.parseStartTag() |
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.
|
void |
MXParser.require(int type,
String namespace,
String name) |
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 |
MXParser.setFeature(String name,
boolean state)
Method setFeature
|
void |
XmlPullParser.setInput(InputStream inputStream,
String inputEncoding)
Sets the input stream the parser is going to process.
|
void |
MXParser.setInput(InputStream inputStream,
String inputEncoding) |
void |
XmlPullParser.setInput(Reader in)
Set the input source for parser to the given reader and resets the parser.
|
void |
MXParser.setInput(Reader in) |
void |
XmlPullParser.setProperty(String name,
Object value)
Set the value of a property.
|
void |
MXParser.setProperty(String name,
Object value) |
void |
MXParser.skipSubTree()
Skip sub tree that is currently parser positioned on.
|
Copyright © 2001–2022 The Apache Software Foundation. All rights reserved.