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

Packages that use Expression
de.fuberlin.wiwiss.d2rq.algebra Implementation of an RDF-based relational algebra. 
de.fuberlin.wiwiss.d2rq.sql SQL query and result processing code. 
 

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

Fields in de.fuberlin.wiwiss.d2rq.algebra declared as Expression
static Expression Expression.FALSE
           
static Expression Expression.TRUE
           
 

Methods in de.fuberlin.wiwiss.d2rq.algebra that return Expression
 Expression Expression.and(Expression other)
           
 Expression ColumnRenamer.applyTo(Expression original)
           
 Expression Relation.condition()
          An expression that must be satisfied for all tuples in the relation.
 Expression RelationImpl.condition()
           
 Expression Expression.renameColumns(ColumnRenamer columnRenamer)
           
 

Methods in de.fuberlin.wiwiss.d2rq.algebra with parameters of type Expression
 Expression Expression.and(Expression other)
           
 Expression ColumnRenamer.applyTo(Expression original)
           
 

Constructors in de.fuberlin.wiwiss.d2rq.algebra with parameters of type Expression
RelationImpl(ConnectedDB database, AliasMap aliases, Map attributeConditions, Expression condition, Set joinConditions)
           
 

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

Methods in de.fuberlin.wiwiss.d2rq.sql with parameters of type Expression
 void SelectStatementBuilder.addCondition(Expression condition)
          Adds a WHERE clause to the query.