Uses of Class
org.d2rq.db.schema.ColumnDef

Packages that use ColumnDef
org.d2rq.db.op   
org.d2rq.db.schema   
org.d2rq.mapgen   
 

Uses of ColumnDef in org.d2rq.db.op
 

Constructor parameters in org.d2rq.db.op with type arguments of type ColumnDef
SQLOp(SQLConnection sqlConnection, String sql, List<ColumnDef> columns)
           
 

Uses of ColumnDef in org.d2rq.db.schema
 

Methods in org.d2rq.db.schema that return ColumnDef
 ColumnDef TableDef.getColumnDef(Identifier columnName)
           
 

Methods in org.d2rq.db.schema that return types with arguments of type ColumnDef
 List<ColumnDef> Inspector.describeSelectStatement(String sqlQuery)
           
 List<ColumnDef> TableDef.getColumns()
           
 

Constructor parameters in org.d2rq.db.schema with type arguments of type ColumnDef
TableDef(TableName name, List<ColumnDef> columns, Key primaryKey, Set<Key> uniqueKeys, Set<ForeignKey> foreignKeys)
           
 

Uses of ColumnDef in org.d2rq.mapgen
 

Method parameters in org.d2rq.mapgen with type arguments of type ColumnDef
 List<Identifier> MappingStyle.getEntityPseudoKeyColumns(List<ColumnDef> columns)
          Returns a list of columns to be used to form blank node identifiers for the records in a table that has no suitable unique/primary key
 List<Identifier> DirectMappingStyle.getEntityPseudoKeyColumns(List<ColumnDef> columns)
           
 List<Identifier> D2RQMappingStyle.getEntityPseudoKeyColumns(List<ColumnDef> columns)