Can i know the type of parsing used in this sample code.
*******************
Document document = null;
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
document = builder.parse(new InputSource(new StringReader(
String)));
NodeList list = document.getChildNodes();
return list;
} catch (IOException ex) {
throw new ACSEnterpriseException(ex.getMessage());
} catch (SAXException ex) {
throw new ACSEnterpriseException(ex.getMessage());
} catch (ParserConfigurationException ex) {
throw new ACSEnterpriseException(ex.getMessage());
}
*****************************