Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From the JavaDoc: returns: The String that is the result of evaluating the expression and converting the result to a String.

/**
 * ...
 * ...
 * @return The <code>String</code> that is the result of evaluating the expression and converting the result to a 
 *   <code>String</code>.
 * ...
 * ...
 */
String javax.xml.xpath.XPathExpression.evaluate(Object item)

The question is, it is a bit vauge what is the contract here in case the expression finds nothing. Is null an valid / invalid return in all implementations? where is the return API defined? in the JSR?

share|improve this question

2 Answers

up vote 2 down vote accepted

If I remember correctly, there is no such thing as null in XPath. My guess would be it returns the empty string.

Update: a quick look at XPath 2.0 and XPath 2.0 Functions specs confirms this feeling.

share|improve this answer
Makes sense, but is it documented somewhere? is there an official guidline to the implementers of this API to avoid returning null? and is there a link to it? And if so, then how would one differ between "your xpath found a node, and it contained the value 'empty string'" to "your xpath didn't find anything"? (I guess that for this you have the evaluate that returns an object) – Eran Medan Dec 31 '09 at 12:58
If you don't find anything, the XPath returns the empty sequence, which is converted to the empty string (w3.org/TR/xquery-operators/#func-string) – Jerome Dec 31 '09 at 13:10
javax.xml.xpath.XPathExpression.evaluate(Object item, QName returnType) returns null if it doesn't find anything by the way – Eran Medan Dec 31 '09 at 13:27

This could be not an expected answer.

<types>
    <type id="1">
        <href>aaa</href>
    </type>
</types>

Lets say you wrote a method finds @id by href.

Double findIdByHref(final String href) {
    evaluate("/:types/:type[:href='bbb']/@id", NUMBER);
}

This method returns 0 not null for bbb as href

final Double id = findByHref("bbb"); // not null

I had to modify like this

Double findIdByHref(final String href) {
    final Node node = evaluate("/:types/:type[:href='bbb']", NODE);
    if (node == null) {
        return null;
    }
    return evaluate("@id", node);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.