Uses of Class
org.basex.query.value.map.Map

Packages that use Map
org.basex.query.expr XQuery expressions. 
org.basex.query.value.map   
org.basex.query.value.type   
 

Uses of Map in org.basex.query.expr
 

Methods in org.basex.query.expr that return Map
 Map ParseExpr.checkMap(Item it)
          Assures that the given (non-null) item is a map.
 

Uses of Map in org.basex.query.value.map
 

Fields in org.basex.query.value.map declared as Map
static Map Map.EMPTY
          The empty map.
 

Methods in org.basex.query.value.map that return Map
 Map Map.addAll(Map other, InputInfo ii)
          Adds all bindings from the given map into this.
 Map Map.coerceTo(FuncType ft, QueryContext ctx, InputInfo ii)
           
 Map Map.delete(Item key, InputInfo ii)
          Deletes a key from this map.
 Map Map.insert(Item k, Value v, InputInfo ii)
          Inserts the given value into this map.
 

Methods in org.basex.query.value.map with parameters of type Map
 Map Map.addAll(Map other, InputInfo ii)
          Adds all bindings from the given map into this.
 boolean Map.deep(InputInfo ii, Map o)
          Checks if the this map is deep-equal to the given one.
 

Uses of Map in org.basex.query.value.type
 

Methods in org.basex.query.value.type that return Map
 Map MapType.cast(Item it, QueryContext ctx, InputInfo ii)