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

Packages that use Identifier
org.d2rq.db.renamer   
org.d2rq.db.schema   
org.d2rq.db.vendor   
org.d2rq.lang   
org.d2rq.mapgen   
org.d2rq.r2rml   
 

Uses of Identifier in org.d2rq.db.renamer
 

Methods in org.d2rq.db.renamer that return Identifier
 Identifier Renamer.applyTo(TableName table, Identifier identifier)
           
 

Methods in org.d2rq.db.renamer with parameters of type Identifier
 Identifier Renamer.applyTo(TableName table, Identifier identifier)
           
 

Uses of Identifier in org.d2rq.db.schema
 

Methods in org.d2rq.db.schema that return Identifier
static Identifier Identifier.create(boolean delimited, String name)
          Caller must ensure that the name is valid.
static Identifier Identifier.createDelimited(String name)
          Caller must ensure that the name is valid.
static Identifier Identifier.createUndelimited(String name)
          Caller must ensure that the name is valid.
 Identifier Key.get(int index)
           
 Identifier TableName.getCatalog()
           
 Identifier ColumnName.getColumn()
           
 Identifier ColumnDef.getName()
           
 Identifier TableName.getSchema()
           
 Identifier TableName.getTable()
           
 Identifier[] Identifier.Parser.result()
           
 

Methods in org.d2rq.db.schema that return types with arguments of type Identifier
 List<Identifier> TableDef.getColumnNames()
           
 List<Identifier> Key.getColumns()
           
 Iterator<Identifier> Key.iterator()
           
 

Methods in org.d2rq.db.schema with parameters of type Identifier
 int Identifier.compareTo(Identifier o)
           
 boolean Key.contains(Identifier column)
           
static Key Key.create(Identifier... columns)
           
static ColumnName ColumnName.create(Identifier column)
           
static TableName TableName.create(Identifier[] parts)
           
static ColumnName ColumnName.create(Identifier[] parts)
           
static TableName TableName.create(Identifier catalog, Identifier schema, Identifier table)
           
static ColumnName ColumnName.create(Identifier catalog, Identifier schema, Identifier table, Identifier column)
           
static ColumnName ColumnName.create(TableName table, Identifier column)
           
 ColumnDef TableDef.getColumnDef(Identifier columnName)
           
 ColumnName TableName.qualifyIdentifier(Identifier identifier)
           
 

Method parameters in org.d2rq.db.schema with type arguments of type Identifier
static Key Key.createFromIdentifiers(List<Identifier> columns)
           
 

Constructors in org.d2rq.db.schema with parameters of type Identifier
ColumnDef(Identifier name, DataType dataType, boolean isNullable)
           
ColumnName(TableName qualifier, Identifier column)
           
 

Uses of Identifier in org.d2rq.db.vendor
 

Methods in org.d2rq.db.vendor with parameters of type Identifier
 String Vendor.toString(Identifier identifier)
          Handles special characters in identifiers.
 String SQL92.toString(Identifier identifier)
           
 String MySQL.toString(Identifier identifier)
           
 

Uses of Identifier in org.d2rq.lang
 

Methods in org.d2rq.lang with parameters of type Identifier
static String Microsyntax.toString(TableName tableName, Identifier column)
          Returns a [schema.]table.column string representation.
 

Uses of Identifier in org.d2rq.mapgen
 

Methods in org.d2rq.mapgen that return types with arguments of type Identifier
protected  List<Identifier> MappingGenerator.filter(TableDef table, List<Identifier> columns, boolean requireDistinct, String reason)
           
 

Methods in org.d2rq.mapgen with parameters of type Identifier
 boolean Filter.matches(TableName table, Identifier column)
           
protected  String W3CMappingGenerator.vocabularyIRITurtle(TableName tableName, Identifier column)
           
protected  String MappingGenerator.vocabularyIRITurtle(TableName tableName, Identifier column)
           
 void MappingGenerator.writeColumn(TableDef table, Identifier column)
           
 

Method parameters in org.d2rq.mapgen with type arguments of type Identifier
protected  List<Identifier> MappingGenerator.filter(TableDef table, List<Identifier> columns, boolean requireDistinct, String reason)
           
 boolean Filter.matchesAll(TableName table, List<Identifier> columns)
           
protected  void W3CMappingGenerator.writeEntityIdentifier(TableDef table, List<Identifier> identifierColumns)
           
protected  void MappingGenerator.writeEntityIdentifier(TableDef table, List<Identifier> identifierColumns)
           
 void MappingGenerator.writeLabelBridge(TableDef table, List<Identifier> labelColumns)
           
 

Uses of Identifier in org.d2rq.r2rml
 

Methods in org.d2rq.r2rml that return Identifier
 Identifier ColumnNameR2RML.asIdentifier()
           
 Identifier[] StringTemplate.getColumnNames()
           
 

Methods in org.d2rq.r2rml that return types with arguments of type Identifier
abstract  List<Identifier> LogicalTable.getColumns(SQLConnection connection)
           
 List<Identifier> LogicalTable.R2RMLView.getColumns(SQLConnection connection)
           
 List<Identifier> LogicalTable.BaseTableOrView.getColumns(SQLConnection connection)