| jpersist.interfaces.ColumnMapping
ColumnMapping | public interface ColumnMapping (Code) | | This interface is optionally implemented to provide overriding mapping
between methods and table columns, and is only needed when a match can't be
made due to a vast difference in naming and/or a collision will occur.
|
Method Summary | |
String | getTableColumnName(String name) Method returns the lowercase mapped name and should return names for every
method/column mapping and every column/method mapping (inverse), even if that
simply means returning the value passed in. |
getTableColumnName | String getTableColumnName(String name)(Code) | | Method returns the lowercase mapped name and should return names for every
method/column mapping and every column/method mapping (inverse), even if that
simply means returning the value passed in.
Parameters: name - the lowercase name that is being mapped the lowercase mapped name |
|
|