Nux 1.6

Uses of Class
nux.xom.xquery.XQueryException

Packages that use XQueryException
nux.xom.pool Efficient and flexible pools and factories for Documents, XQueries, and XSL Transforms, as well as Builders that validate against W3C XML Schemas, DTDs, RELAX NG, Schematron, etc. 
nux.xom.xquery W3C XQuery and XPath support for XOM. 
 

Uses of XQueryException in nux.xom.pool
 

Methods in nux.xom.pool that throw XQueryException
 XQuery XQueryFactory.createXQuery(File query)
          Creates and returns a new XQuery for the given input query.
 XQuery XQueryFactory.createXQuery(File query, URI baseURI)
          Creates and returns a new XQuery for the given input query, using the given base URI.
 XQuery XQueryFactory.createXQuery(InputStream query, URI baseURI)
          Creates and returns a new XQuery for the given input query, using the given base URI.
 XQuery XQueryFactory.createXQuery(String query, URI baseURI)
          Creates and returns a new XQuery for the given input query, using the given base URI.
 XQuery XQueryPool.getXQuery(File query)
          Returns an XQuery for the given input query.
 XQuery XQueryPool.getXQuery(File query, URI baseURI)
          Returns an XQuery for the given input query, using the given base URI.
 XQuery XQueryPool.getXQuery(ResourceResolver resolver, String resourceName, URI baseURI)
          Returns an XQuery for the input stream obtained from resolving the given resourceName against the given resolver.
 XQuery XQueryPool.getXQuery(String query, URI baseURI)
          Returns an XQuery for the given input query, using the given base URI.
 

Uses of XQueryException in nux.xom.xquery
 

Methods in nux.xom.xquery that throw XQueryException
 ResultSequence XQuery.execute(Node contextNode)
          Executes (evaluates) the query against the given node.
 ResultSequence XQuery.execute(Node contextNode, DynamicQueryContext dynamicContext, Map variables)
          Executes (evaluates) the query against the given node, using the given dynamic context and external variables.
protected  ResultSequence XQuery.newResultSequence(XQueryExpression expression, DynamicQueryContext dynamicContext)
          Callback that returns a result sequence for the current query execution.
 Node ResultSequence.next()
          Returns the next node from the result sequence, or null if there are no more nodes available due too iterator exhaustion.
 Nodes ResultSequence.toNodes()
          Returns all remaining nodes from the result sequence, collected into a list of zero or more Node objects.
 

Constructors in nux.xom.xquery that throw XQueryException
XQuery(String query, URI baseURI)
          Constructs a new compiled XQuery from the given query.
XQuery(String query, URI baseURI, StaticQueryContext staticContext, DocumentURIResolver resolver)
          Constructs a new compiled XQuery from the given query, base URI, static context and resolver.
 


Nux 1.6