Home | History | Annotate | Download | only in xpath

Lines Matching refs:evaluate

37  *         If a request is made to evaluate the expression in the absence
85 * <p>Evaluate the compiled XPath expression in the specified context and return the result as the specified type.</p>
108 public Object evaluate(Object item, QName returnType)
112 * <p>Evaluate the compiled XPath expression in the specified context and return the result as a <code>String</code>.</p>
114 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of
131 public String evaluate(Object item)
135 * <p>Evaluate the compiled XPath expression in the context of the specified <code>InputSource</code> and return the result as the
139 * {@link #evaluate(Object item, QName returnType)} on the resulting document object.</p>
150 * @param source The <code>InputSource</code> of the document to evaluate over.
160 public Object evaluate(InputSource source, QName returnType)
164 * <p>Evaluate the compiled XPath expression in the context of the specified <code>InputSource</code> and return the result as a
167 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
175 * @param source The <code>InputSource</code> of the document to evaluate over.
183 public String evaluate(InputSource source)