Uses of Class
org.basex.query.xpath.values.Item

Packages that use Item
org.basex.query.xpath Includes an implementation of XPath 1.0. 
org.basex.query.xpath.expr Contains XPath 1.0 expressions. 
org.basex.query.xpath.func Contains XPath 1.0 functions. 
org.basex.query.xpath.internal Contains internally used XPath expressions. 
org.basex.query.xpath.values Contains containers for XPath 1.0 data types. 
 

Uses of Item in org.basex.query.xpath
 

Methods in org.basex.query.xpath that return Item
 Item XPContext.eval(Expr e)
          Evaluates the expression with the specified context set.
 

Uses of Item in org.basex.query.xpath.expr
 

Methods in org.basex.query.xpath.expr that return Item
abstract  Item Expr.eval(XPContext ctx)
          Evaluates the expression with the specified context set.
 

Uses of Item in org.basex.query.xpath.func
 

Methods in org.basex.query.xpath.func that return Item
 Item Sort.eval(XPContext ctx)
           
 Item Random.eval(XPContext ctx)
           
 Item[] Func.evalArgs(XPContext ctx)
          Evaluates the arguments.
 Item XPathContext.evalVariable(byte[] name)
          Evaluates a variable.
 

Uses of Item in org.basex.query.xpath.internal
 

Constructors in org.basex.query.xpath.internal with parameters of type Item
AllOf(LocPath p, Item[] v, Comp c)
          Constructor.
OneOf(LocPath p, Item[] v, Comp c)
          Constructor.
Range(Expr e, Item mn, Item mx)
          Constructor.
 

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

Subclasses of Item in org.basex.query.xpath.values
 class Bool
          XPath Value representing a boolean.
 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 Item
 boolean Num.appr(Item v)
           
 boolean NodeSet.appr(Item v)
           
 boolean Literal.appr(Item val)
           
 boolean Bool.appr(Item v)
           
 boolean NodeSet.apprContainedIn(Item val)
          inverse ftcontains (this NodeSet is the argument to val.apprContains).
 boolean NodeSet.apprContains(Item v)
           
 boolean Bool.apprContains(Item v)
           
 boolean NodeSet.contains(Item val)
           
 boolean Num.eq(Item v)
           
 boolean NodeSet.eq(Item v)
           
 boolean Literal.eq(Item val)
           
abstract  boolean Item.eq(Item v)
          Checks the equality of the value and the specified value.
 boolean Bool.eq(Item v)
           
abstract  boolean Comp.eval(Item v1, Item v2)
          Evaluates the expression.
 boolean NodeSet.ftcontainedin(Item val)
          inverse ftcontains (this NodeSet is the argument to val.ftcontains).
 boolean NodeSet.ge(Item v)
           
 boolean NodeSet.gt(Item v)
           
 boolean NodeSet.le(Item v)
           
 boolean NodeSet.lt(Item v)