Uses of Class
de.fuberlin.wiwiss.d2rq.algebra.Attribute

Packages that use Attribute
de.fuberlin.wiwiss.d2rq.algebra Implementation of an RDF-based relational algebra. 
de.fuberlin.wiwiss.d2rq.dbschema JDBC-based database schema inspection code. 
de.fuberlin.wiwiss.d2rq.fastpath D2RQ's Fastpath query implementation is able to translate a basic graph pattern (a set of triples that may contain variables) into a single SQL expression. 
de.fuberlin.wiwiss.d2rq.mapgen The mapping generator introspects a database schema and generates a simple default D2RQ mapping that matches the DB schema. 
de.fuberlin.wiwiss.d2rq.nodes Code that maps a set of database values into a set of RDF nodes. 
de.fuberlin.wiwiss.d2rq.rdql Implementation of Jena's Graph query handler. 
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 Attribute in de.fuberlin.wiwiss.d2rq.algebra
 

Methods in de.fuberlin.wiwiss.d2rq.algebra that return Attribute
 Attribute AliasMap.applyTo(Attribute attribute)
           
abstract  Attribute ColumnRenamer.applyTo(Attribute original)
           
 Attribute ColumnRenamerMap.applyTo(Attribute original)
           
 Attribute Join.equalAttribute(Attribute column)
           
 Attribute AliasMap.originalOf(Attribute attribute)
           
 

Methods in de.fuberlin.wiwiss.d2rq.algebra with parameters of type Attribute
 Attribute AliasMap.applyTo(Attribute attribute)
           
abstract  Attribute ColumnRenamer.applyTo(Attribute original)
           
 Attribute ColumnRenamerMap.applyTo(Attribute original)
           
 boolean Join.containsColumn(Attribute column)
           
 Attribute Join.equalAttribute(Attribute column)
           
 Attribute AliasMap.originalOf(Attribute attribute)
           
 

Constructors in de.fuberlin.wiwiss.d2rq.algebra with parameters of type Attribute
Join(Attribute oneSide, Attribute otherSide)
           
 

Uses of Attribute in de.fuberlin.wiwiss.d2rq.dbschema
 

Methods in de.fuberlin.wiwiss.d2rq.dbschema with parameters of type Attribute
 int DatabaseSchemaInspector.columnType(Attribute column)
           
 

Uses of Attribute in de.fuberlin.wiwiss.d2rq.fastpath
 

Methods in de.fuberlin.wiwiss.d2rq.fastpath with parameters of type Attribute
 void NodeConstraintImpl.addEqualColumn(Attribute c1, Attribute c2)
           
 void NodeConstraintImpl.limitValuesToAttribute(Attribute c)
          Constraints given on Nodes that are equal to Columns can be directly translated to Column constraints.
 

Uses of Attribute in de.fuberlin.wiwiss.d2rq.mapgen
 

Methods in de.fuberlin.wiwiss.d2rq.mapgen with parameters of type Attribute
 void MappingGenerator.writeColumn(Attribute column, List foreignKeys)
           
 void MappingGenerator.writeColumnHacks(Attribute column, int colType)
           
 

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

Methods in de.fuberlin.wiwiss.d2rq.nodes with parameters of type Attribute
 void NodeSetFilter.limitValuesToAttribute(Attribute attribute)
          Limits this node set to those whose value matches a value in a particular database table column.
 

Uses of Attribute in de.fuberlin.wiwiss.d2rq.rdql
 

Methods in de.fuberlin.wiwiss.d2rq.rdql with parameters of type Attribute
 ExpressionTranslator.Result ExpressionTranslator.translateColumn(Attribute col)
           
 

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

Methods in de.fuberlin.wiwiss.d2rq.sql that return Attribute
static Attribute SQL.parseAttribute(String qualifiedName)
          Constructs an attribute from a fully qualified column name in [schema.]table.column notation.
 

Methods in de.fuberlin.wiwiss.d2rq.sql with parameters of type Attribute
 void SelectStatementBuilder.addColumnValue(Attribute column, String value)
          Adds a WHERE clause to the query.
 void SelectStatementBuilder.addSelectColumn(Attribute column)
          Adds a column to the SELECT part of the query.
 int ConnectedDB.columnType(Attribute column)
          Returns the columnType for a given database column.
 String ResultRow.get(Attribute column)
           
 String ResultRowMap.get(Attribute column)
           
 String ConnectedDB.quoteAttribute(Attribute attribute)
           
 String ConnectedDB.quoteValue(String value, Attribute column)
           
 

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

Constructors in de.fuberlin.wiwiss.d2rq.values with parameters of type Attribute
Column(Attribute attribute)