Returns the result value. @return result value @throws XQueryException exception
()
| 233 | * @throws XQueryException exception |
| 234 | */ |
| 235 | public XdmValue value() { |
| 236 | try { |
| 237 | final Value value = qp.value(); |
| 238 | value.cache(false, null); |
| 239 | return XdmValue.get(value); |
| 240 | } catch(final QueryException ex) { |
| 241 | throw new XQueryException(ex); |
| 242 | } finally { |
| 243 | qp.close(); |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Returns the query processor. |
no test coverage detected