Uses of Class
org.basex.query.xpath.item.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.item 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
 Item Path.eval(XPContext ctx)
           
 Item FTContains.eval(XPContext ctx)
           
abstract  Item Expr.eval(XPContext ctx)
          Evaluates the expression with the specified context set.
 Item FTSelect.eval(XPContext ctx)
           
 Item FTWords.eval(XPContext ctx)
           
 

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

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

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.item
 

Subclasses of Item in org.basex.query.xpath.item
 class Bln
          XPath Value representing a boolean.
 class Dbl
          XPath value type modeling a number.
 class Nod
          XPath Value representing a NodeSet.
 class Str
          XPath Literal.
 

Methods in org.basex.query.xpath.item with parameters of type Item
 boolean Nod.appr(Item v)
           
 boolean Str.appr(Item val)
           
 boolean Dbl.appr(Item v)
           
 boolean Bln.appr(Item v)
           
 boolean Nod.apprContainedIn(Item val)
          inverse contains (this NodeSet is the argument to val.apprContains).
 boolean Nod.apprContains(Item v)
           
 boolean Bln.apprContains(Item v)
           
 boolean Nod.eq(Item v)
           
 boolean Str.eq(Item val)
           
 boolean Dbl.eq(Item v)
           
 boolean Bln.eq(Item v)
           
abstract  boolean Item.eq(Item v)
          Checks the equality of the value and the specified value.
abstract  boolean Comp.eval(Item v1, Item v2)
          Evaluates the expression.
 boolean Nod.ge(Item v)
           
 boolean Nod.gt(Item v)
           
 boolean Nod.le(Item v)
           
 boolean Nod.lt(Item v)