106107108109110111112113
throws XPathException { try { XPath xpath = getXPath(path, namespaces); return xpath.booleanValueOf(base); } catch (JaxenException e) { throw new XPathException(e); } }
119120121122123124125126
throws XPathException { try { XPath xpath = getXPath(path, namespaces); return xpath.numberValueOf(base); } catch (JaxenException e) { throw new XPathException(e); } }