Uses of Interface
org.basex.data.Result

Packages that use Result
org.basex.core.proc This package contains the command implementations. 
org.basex.data Contains BaseX data types, including the internal table representation in the Data class. 
org.basex.query Provides classes for querying the data. 
org.basex.query.xpath Includes an implementation of XPath 1.0. 
org.basex.query.xpath.values Contains containers for XPath 1.0 data types. 
org.basex.query.xquery Includes an implementation of XQuery 1.0. 
 

Uses of Result in org.basex.core.proc
 

Methods in org.basex.core.proc that return Result
 Result Proc.result()
          Returns the result set, generated by the last query.
 

Uses of Result in org.basex.data
 

Classes in org.basex.data that implement Result
 class Nodes
          This is a container for context nodes.
 

Methods in org.basex.data with parameters of type Result
 boolean Result.sameAs(Result v)
          Compares values for equality.
 boolean Nodes.sameAs(Result v)
          Compares values for equality.
 

Constructors in org.basex.data with parameters of type Result
ResultReader(Result res)
          Constructor.
 

Uses of Result in org.basex.query
 

Methods in org.basex.query that return Result
abstract  Result QueryContext.eval(Nodes nodes)
          Evaluates the expression with the specified context set.
 Result QueryProcessor.query(Nodes n)
          Parses the specified query and returns the result.
 

Uses of Result in org.basex.query.xpath
 

Methods in org.basex.query.xpath that return Result
 Result XPContext.eval(Nodes nodes)
           
 

Uses of Result in org.basex.query.xpath.values
 

Classes in org.basex.query.xpath.values that implement Result
 class Bool
          XPath Value representing a boolean.
 class Item
          Interface for all XPath items (results of expressions).
 class Literal
          XPath Literal.
 class NodeSet
          XPath Value representing a NodeSet.
 class Num
          XPath value type modeling a number.
 

Methods in org.basex.query.xpath.values with parameters of type Result
 boolean Item.sameAs(Result v)
          Compares values for equality.
 

Uses of Result in org.basex.query.xquery
 

Classes in org.basex.query.xquery that implement Result
 class XQResult
          This is a container for XQuery results.
 

Methods in org.basex.query.xquery that return Result
 Result XQContext.eval(Nodes nodes)
           
 

Methods in org.basex.query.xquery with parameters of type Result
 boolean XQResult.sameAs(Result v)
          Compares values for equality.