public interface RenderNamingStrategy
NamingStrategies
Modifier and Type | Method and Description |
---|---|
default SqlIdentifier |
getName(Column column)
Return the
column name . |
default SqlIdentifier |
getName(Table table)
Return the
table name . |
default SqlIdentifier |
getReferenceName(Column column)
Return the
column reference name . |
default SqlIdentifier |
getReferenceName(Table table)
Return the
table reference name . |
default RenderNamingStrategy |
map(Function<String,String> mappingFunction)
Applies a
mapping function after retrieving the object (column name, column reference name, …)
name. |
default SqlIdentifier getName(Column column)
column name
.column
- the column.column name
.Column.getName()
default SqlIdentifier getReferenceName(Column column)
column reference name
.column
- the column.column reference name
.()
default SqlIdentifier getName(Table table)
table name
.table
- the table.table name
.Table.getName()
default SqlIdentifier getReferenceName(Table table)
table reference name
.table
- the table.table name
.Table.getReferenceName()
default RenderNamingStrategy map(Function<String,String> mappingFunction)
mapping function
after retrieving the object (column name, column reference name, …)
name.mappingFunction
- the function that maps an object name.RenderNamingStrategy
applying mapping function
.Copyright © 2017–2020 Pivotal Software, Inc.. All rights reserved.