MCPcopy Index your code
hub / github.com/benfry/processing4 / parseXML

Method parseXML

core/src/processing/core/PApplet.java:5270–5272  ·  view source on GitHub ↗

Takes a String, parses its contents, and returns an XML object. If the String does not contain XML data or cannot be parsed, a null value is returned. parseXML() is most useful when pulling data dynamically, such as from third-party APIs. Normally, API results would be sav

(String xmlString)

Source from the content-addressed store, hash-verified

5268 * @see PApplet#saveXML(XML, String)
5269 */
5270 public XML parseXML(String xmlString) {
5271 return parseXML(xmlString, null);
5272 }
5273
5274
5275 public XML parseXML(String xmlString, String options) {

Callers

nothing calls this directly

Calls 1

parseMethod · 0.95

Tested by

no test coverage detected