Skip to content

Commit

Permalink
improved JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Sep 22, 2024
1 parent d4ad891 commit e7ab2d9
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
*/
public interface TypeMapper<S, T> {

/** The default separator for {@link #mapName(String) name mapping}. */
/**
* The default separator for {@link #mapName(String) name mapping}. It would be more natural to use "." but
* unfortunately this is not accepted in column names of common database products. Other common separators like "_"
* are likely to clash with other convenient naming. Therefore, we need to use something that is reserved or specific
* enough not to be used in regular names but is still accepted by all databases.
*/
String DEFAULT_SEPARATOR = "$";

/**
Expand Down

0 comments on commit e7ab2d9

Please sign in to comment.