Home | History | Annotate | Download | only in xpath

Lines Matching refs:evaluate

38  *         If a request is made to evaluate the expression in the absence
184 * <p>Evaluate an <code>XPath</code> expression in the specified context and return the result as the specified type.</p>
213 public Object evaluate(String expression, Object item, QName returnType)
217 * <p>Evaluate an XPath expression in the specified context and return the result as a <code>String</code>.</p>
219 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
239 public String evaluate(String expression, Object item)
243 * <p>Evaluate an XPath expression in the context of the specified <code>InputSource</code>
247 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.</p>
259 * @param source The input source of the document to evaluate over.
269 public Object evaluate(
276 * <p>Evaluate an XPath expression in the context of the specified <code>InputSource</code>
279 * <p>This method calls {@link #evaluate(String expression, InputSource source, QName returnType)} with a
289 * @param source The <code>InputSource</code> of the document to evaluate over.
297 public String evaluate(String expression, InputSource source)