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

Packages that use RelationName
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.mapgen The mapping generator introspects a database schema and generates a simple default D2RQ mapping that matches the DB schema. 
de.fuberlin.wiwiss.d2rq.sql SQL query and result processing code. 
 

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

Methods in de.fuberlin.wiwiss.d2rq.algebra that return RelationName
 RelationName AliasMap.Alias.alias()
           
 RelationName AliasMap.applyTo(RelationName original)
           
 RelationName AliasMap.Alias.original()
           
 RelationName AliasMap.originalOf(RelationName name)
           
 RelationName Attribute.relationName()
          Returns the table name, including the schema if the table is in a schema.
 RelationName Join.table1()
           
 RelationName Join.table2()
           
 

Methods in de.fuberlin.wiwiss.d2rq.algebra with parameters of type RelationName
 RelationName AliasMap.applyTo(RelationName original)
           
 boolean AliasMap.hasAlias(RelationName original)
           
 boolean AliasMap.isAlias(RelationName name)
           
 RelationName AliasMap.originalOf(RelationName name)
           
 

Constructors in de.fuberlin.wiwiss.d2rq.algebra with parameters of type RelationName
AliasMap.Alias(RelationName original, RelationName alias)
           
Attribute(RelationName relationName, String attributeName)
           
 

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

Methods in de.fuberlin.wiwiss.d2rq.dbschema with parameters of type RelationName
 List DatabaseSchemaInspector.foreignKeyColumns(RelationName tableName)
           
 boolean DatabaseSchemaInspector.isLinkTable(RelationName tableName)
           
 List DatabaseSchemaInspector.listColumns(RelationName tableName)
           
 List DatabaseSchemaInspector.primaryKeyColumns(RelationName tableName)
           
 

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

Methods in de.fuberlin.wiwiss.d2rq.mapgen with parameters of type RelationName
 void MappingGenerator.writeLabelBridge(RelationName tableName)
           
 void MappingGenerator.writeTable(RelationName tableName)
           
 

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

Methods in de.fuberlin.wiwiss.d2rq.sql that return RelationName
static RelationName SQL.parseRelationName(String qualifiedName)
          Constructs a relation name from a fully qualified name in schema.table or table notation.
 

Methods in de.fuberlin.wiwiss.d2rq.sql with parameters of type RelationName
 String ConnectedDB.quoteRelationName(RelationName relationName)