Interface QualifiedName
-
- All Known Implementing Classes:
QualifiedNameImpl,QualifiedNameParser.NameParts,QualifiedSequenceName,QualifiedTableName,QualifiedTypeName,Sequence.Name
public interface QualifiedNameModels the qualified name of a database object. Some things to keep in mind wrt catalog/schema:Also, be careful about the usage of
render(). If the intention is to get the name as used in the database, theJdbcEnvironmenttoQualifiedObjectNameFormatter.format(org.hibernate.boot.model.relational.QualifiedTableName, org.hibernate.dialect.Dialect)should be used instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IdentifiergetCatalogName()IdentifiergetObjectName()IdentifiergetSchemaName()Stringrender()Returns a string form of the qualified name.
-
-
-
Method Detail
-
getCatalogName
Identifier getCatalogName()
-
getSchemaName
Identifier getSchemaName()
-
getObjectName
Identifier getObjectName()
-
render
String render()
Returns a string form of the qualified name.Depending on intention, may not be appropriate. May want
SqlStringGenerationContext.format(org.hibernate.boot.model.relational.QualifiedTableName)instead.- Returns:
- The string form
-
-