Uses of Interface
de.fuberlin.wiwiss.d2rq.sql.ResultRow

Packages that use ResultRow
de.fuberlin.wiwiss.d2rq.algebra Implementation of an RDF-based relational algebra. 
de.fuberlin.wiwiss.d2rq.nodes Code that maps a set of database values into a set of RDF nodes. 
de.fuberlin.wiwiss.d2rq.sql SQL query and result processing code. 
de.fuberlin.wiwiss.d2rq.values Code for expressing a rule that generates a set of values from some data in the database. 
 

Uses of ResultRow in de.fuberlin.wiwiss.d2rq.algebra
 

Methods in de.fuberlin.wiwiss.d2rq.algebra that return ResultRow
 ResultRow ColumnRenamer.applyTo(ResultRow row)
           
 

Methods in de.fuberlin.wiwiss.d2rq.algebra with parameters of type ResultRow
 ResultRow ColumnRenamer.applyTo(ResultRow row)
           
 Collection TripleRelation.makeTriples(ResultRow row)
           
 Collection UnionOverSameBase.makeTriples(ResultRow row)
           
 

Uses of ResultRow in de.fuberlin.wiwiss.d2rq.nodes
 

Methods in de.fuberlin.wiwiss.d2rq.nodes with parameters of type ResultRow
 com.hp.hpl.jena.graph.Node FixedNodeMaker.makeNode(ResultRow tuple)
           
 com.hp.hpl.jena.graph.Node NodeMaker.makeNode(ResultRow tuple)
           
 com.hp.hpl.jena.graph.Node TypedNodeMaker.makeNode(ResultRow tuple)
           
 

Uses of ResultRow in de.fuberlin.wiwiss.d2rq.sql
 

Classes in de.fuberlin.wiwiss.d2rq.sql that implement ResultRow
 class ResultRowMap
          A result row returned by a database query, presented as a map from columns to string values.
 

Fields in de.fuberlin.wiwiss.d2rq.sql declared as ResultRow
static ResultRow ResultRow.NO_ATTRIBUTES
           
 

Methods in de.fuberlin.wiwiss.d2rq.sql that return ResultRow
 ResultRow QueryExecutionIterator.nextRow()
           
 

Methods in de.fuberlin.wiwiss.d2rq.sql with parameters of type ResultRow
 Collection TripleMaker.makeTriples(ResultRow row)
           
 

Uses of ResultRow in de.fuberlin.wiwiss.d2rq.values
 

Methods in de.fuberlin.wiwiss.d2rq.values with parameters of type ResultRow
 String BlankNodeID.makeValue(ResultRow row)
          Creates an identifier from a database row.
 String Column.makeValue(ResultRow row)
           
 String Pattern.makeValue(ResultRow row)
          Constructs a String from the pattern using the given database row.
 String ValueDecorator.makeValue(ResultRow row)
           
 String ValueMaker.makeValue(ResultRow row)
          Retrieves a value from a database row according to some rule or pattern.