Package org.hibernate.boot.model.naming
Class CamelCaseToUnderscoresNamingStrategy
- java.lang.Object
-
- org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy
-
- All Implemented Interfaces:
PhysicalNamingStrategy
public class CamelCaseToUnderscoresNamingStrategy extends Object implements PhysicalNamingStrategy
Originally copied from Spring Boot as this strategy is popular there (original name is SpringPhysicalNamingStrategy).
-
-
Constructor Summary
Constructors Constructor Description CamelCaseToUnderscoresNamingStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected IdentifiergetIdentifier(String name, boolean quoted, JdbcEnvironment jdbcEnvironment)Get an identifier for the specified details.protected booleanisCaseInsensitive(JdbcEnvironment jdbcEnvironment)Specify whether the database is case sensitive.IdentifiertoPhysicalCatalogName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the appropriate physical catalog name to use for the given logical nameIdentifiertoPhysicalColumnName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the appropriate physical column name to use for the given logical nameIdentifiertoPhysicalSchemaName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the appropriate physical schema name to use for the given logical nameIdentifiertoPhysicalSequenceName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the appropriate physical sequence name to use for the given logical nameIdentifiertoPhysicalTableName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the appropriate physical table name to use for the given logical name
-
-
-
Method Detail
-
toPhysicalCatalogName
public Identifier toPhysicalCatalogName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the appropriate physical catalog name to use for the given logical name- Specified by:
toPhysicalCatalogNamein interfacePhysicalNamingStrategy
-
toPhysicalSchemaName
public Identifier toPhysicalSchemaName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the appropriate physical schema name to use for the given logical name- Specified by:
toPhysicalSchemaNamein interfacePhysicalNamingStrategy
-
toPhysicalTableName
public Identifier toPhysicalTableName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the appropriate physical table name to use for the given logical name- Specified by:
toPhysicalTableNamein interfacePhysicalNamingStrategy
-
toPhysicalSequenceName
public Identifier toPhysicalSequenceName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the appropriate physical sequence name to use for the given logical name- Specified by:
toPhysicalSequenceNamein interfacePhysicalNamingStrategy
-
toPhysicalColumnName
public Identifier toPhysicalColumnName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the appropriate physical column name to use for the given logical name- Specified by:
toPhysicalColumnNamein interfacePhysicalNamingStrategy
-
getIdentifier
protected Identifier getIdentifier(String name, boolean quoted, JdbcEnvironment jdbcEnvironment)
Get an identifier for the specified details. By default this method will return an identifier with the name adapted based on the result ofisCaseInsensitive(JdbcEnvironment)- Parameters:
name- the name of the identifierquoted- if the identifier is quotedjdbcEnvironment- the JDBC environment- Returns:
- an identifier instance
-
isCaseInsensitive
protected boolean isCaseInsensitive(JdbcEnvironment jdbcEnvironment)
Specify whether the database is case sensitive.- Parameters:
jdbcEnvironment- the JDBC environment which can be used to determine case- Returns:
- true if the database is case insensitive sensitivity
-
-