Interface DatastoreIdentifier
- All Known Implementing Classes:
CandidateKeyIdentifier, ColumnIdentifier, DatastoreIdentifierImpl, ForeignKeyIdentifier, IndexIdentifier, PrimaryKeyIdentifier, SequenceIdentifier, TableIdentifier
public interface DatastoreIdentifier
Representation of a datastore identifier in an RDBMS datastore.
This can be something like a table name, column name, index name etc.
-
Method Summary
Modifier and TypeMethodDescriptionAccessor for the cataloggetFullyQualifiedName(boolean adapterCase) Accessor for the fully-qualified name.getName()Provides the name (with no quotes).Accessor for the schemavoidsetCatalogName(String catalogName) Sets the catalogvoidsetSchemaName(String schemaName) Sets the schematoString()Method to output the name of the identifier.
-
Method Details
-
getName
-
setCatalogName
-
setSchemaName
-
getCatalogName
-
getSchemaName
-
getFullyQualifiedName
Accessor for the fully-qualified name.- Parameters:
adapterCase- Whether to return the name in adapter case (upper/lower and with quotes etc)- Returns:
- Fully qualified name
-
toString
-