Methods
Type Params |
Return Type |
Name and description |
|
public static Element |
createElement(org.w3c.dom.Document doc, String tagName, String attributes)
|
|
public static Element |
createElement(org.w3c.dom.Document doc, String tagName, Map<String, String> attributes)
|
|
public static String |
docToString(org.w3c.dom.Document doc)
|
|
public static org.w3c.dom.Node |
findNode(org.w3c.dom.Document doc, XMLHelper.NodeFinder filter)
|
|
public static org.w3c.dom.Node |
findNode(org.w3c.dom.Node root, XMLHelper.NodeFinder filter)
|
|
public static org.w3c.dom.Node |
findNode(org.w3c.dom.NodeList nodes, XMLHelper.NodeFinder filter)
|
|
public static org.w3c.dom.Node |
findNodeByAttributes(org.w3c.dom.Document doc, String attributes)
|
|
public static org.w3c.dom.Node |
findNodeByAttributes(org.w3c.dom.Node root, String attributes)
|
|
public static org.w3c.dom.Node |
findNodeByAttributes(org.w3c.dom.Node root, Map<String, String> attributes)
|
|
public static org.w3c.dom.Node |
findNodeByAttributes(org.w3c.dom.NodeList nodes, Map<String, String> attributes)
|
|
public static org.w3c.dom.Node |
findNodeByTagName(org.w3c.dom.Document doc, String tagName)
|
|
public static org.w3c.dom.Node |
findNodeByTagName(org.w3c.dom.Node root, String tagName)
|
|
public static org.w3c.dom.Node |
findNodeByTagName(org.w3c.dom.NodeList nodes, String tagName)
|
|
public static List<org.w3c.dom.Node> |
findNodes(org.w3c.dom.Document doc, XMLHelper.NodeFinder filter)
|
|
public static List<org.w3c.dom.Node> |
findNodes(org.w3c.dom.Node root, XMLHelper.NodeFinder filter)
|
|
public static List<org.w3c.dom.Node> |
findNodes(org.w3c.dom.NodeList nodes, XMLHelper.NodeFinder filter)
|
|
public static List<org.w3c.dom.Node> |
findNodes(org.w3c.dom.NodeList nodes, XMLHelper.NodeFinder filter, boolean returnFirstMatch)
|
|
public static List<org.w3c.dom.Node> |
findNodesByAttributes(org.w3c.dom.NodeList nodes, String attributes)
|
|
public static List<org.w3c.dom.Node> |
findNodesByAttributes(org.w3c.dom.NodeList nodes, Map<String, String> attributes)
|
|
public static List<org.w3c.dom.Node> |
findNodesByTagName(org.w3c.dom.Node root, String tagName)
|
|
public static List<org.w3c.dom.Node> |
findNodesByTagName(org.w3c.dom.NodeList nodes, String tagName)
|
|
public static String |
getNodeAttribute(org.w3c.dom.Node node, String attributeName)
|
|
public static Map<String, String> |
getNodeAttributes(org.w3c.dom.Node node)
|
|
public static org.w3c.dom.NodeList |
getNodeList(org.w3c.dom.Document doc)
|
|
public static org.w3c.dom.NodeList |
getNodeList(org.w3c.dom.Node root)
|
|
public static org.w3c.dom.Document |
readXML(String rawInput)
|