getNodeTypeValue function
Implementation
int getNodeTypeValue(NodeType nodeType) {
switch (nodeType) {
case NodeType.ELEMENT_NODE:
return 1;
case NodeType.TEXT_NODE:
return 3;
case NodeType.COMMENT_NODE:
return 8;
case NodeType.DOCUMENT_NODE:
return 9;
case NodeType.DOCUMENT_FRAGMENT_NODE:
return 11;
}
}