|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.sling.commons.json.JSONTokener org.apache.sling.commons.json.xml.XMLTokener
public class XMLTokener
The XMLTokener extends the JSONTokener to provide additional methods for the parsing of XML texts.
Field Summary | |
---|---|
static HashMap<String,Character> |
entity
The table of entity values. |
Constructor Summary | |
---|---|
XMLTokener(String s)
Construct an XMLTokener from a string. |
Method Summary | |
---|---|
String |
nextCDATA()
Get the text in the CDATA block. |
Object |
nextContent()
Get the next XML outer token, trimming whitespace. |
Object |
nextEntity(char a)
Return the next entity. |
Object |
nextMeta()
Returns the next XML meta token. |
Object |
nextToken()
Get the next XML Token. |
Methods inherited from class org.apache.sling.commons.json.JSONTokener |
---|
back, dehexchar, more, next, next, next, nextClean, nextString, nextTo, nextTo, nextValue, skipPast, skipTo, syntaxError, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final HashMap<String,Character> entity
Constructor Detail |
---|
public XMLTokener(String s)
s
- A source string.Method Detail |
---|
public String nextCDATA() throws JSONException
]]>
.
JSONException
- If the ]]>
is not found.public Object nextContent() throws JSONException
JSONException
public Object nextEntity(char a) throws JSONException
& ' > < "
.
a
- An ampersand character.
JSONException
- If missing ';' in XML entity.public Object nextMeta() throws JSONException
< > / = ! ?
) are returned as
Character, and strings and names are returned as Boolean. We don't care
what the values actually are.
JSONException
- If a string is not properly closed or if the XML
is badly structured.public Object nextToken() throws JSONException
/ > = ! ?
or it
may be a string wrapped in single quotes or double quotes, or it may be a
name.
JSONException
- If the XML is not well formed.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |