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 physical catalog name from the given logical nameIdentifiertoPhysicalColumnName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the physical column name from the given logical nameIdentifiertoPhysicalSchemaName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the physical schema name from the given logical nameIdentifiertoPhysicalSequenceName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the physical sequence name from the given logical nameIdentifiertoPhysicalTableName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)Determine the physical table name from the given logical name-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.boot.model.naming.PhysicalNamingStrategy
toPhysicalTypeName
-
-
-
-
Method Detail
-
toPhysicalCatalogName
public Identifier toPhysicalCatalogName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the physical catalog name from the given logical name- Specified by:
toPhysicalCatalogNamein interfacePhysicalNamingStrategy
-
toPhysicalSchemaName
public Identifier toPhysicalSchemaName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the physical schema name from the given logical name- Specified by:
toPhysicalSchemaNamein interfacePhysicalNamingStrategy
-
toPhysicalTableName
public Identifier toPhysicalTableName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the physical table name from the given logical name- Specified by:
toPhysicalTableNamein interfacePhysicalNamingStrategy
-
toPhysicalSequenceName
public Identifier toPhysicalSequenceName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the physical sequence name from the given logical name- Specified by:
toPhysicalSequenceNamein interfacePhysicalNamingStrategy
-
toPhysicalColumnName
public Identifier toPhysicalColumnName(Identifier logicalName, JdbcEnvironment jdbcEnvironment)
Description copied from interface:PhysicalNamingStrategyDetermine the physical column name from 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
-
-