This commit is contained in:
Steve Ebersole 2024-05-31 14:59:27 -05:00
parent 0294576c8b
commit 8ac9db495a
1 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ public interface IdMapper {
* @param id Value of id.
* @param alias the alias to use in the specified parameters (may be null).
* @param prefix Prefix to add to the properties (may be null).
* @param equals Should this query express the "=" relation or the "<>" relation.
* @param equals Should this query express the {@code "="} relation or the {@code "<>"} relation.
*/
void addIdEqualsToQuery(Parameters parameters, Object id, String alias, String prefix, boolean equals);
@ -115,7 +115,7 @@ public interface IdMapper {
*
* @param parameters Parameters, to which to add the statements.
* @param prefix Prefix to add to the properties (may be null).
* @param equals Should this query express the "=" relation or the "<>" relation.
* @param equals Should this query express the {@code "="} relation or the {@code "<>"} relation.
*/
void addNamedIdEqualsToQuery(Parameters parameters, String prefix, boolean equals);
@ -126,7 +126,7 @@ public interface IdMapper {
* @param parameters Parameters, to which to add the statements.
* @param prefix Prefix to add to the properties (may be null).
* @param mapper The identifier mapper to use
* @param equals Should this query express the "=" relation or the "<>" relation.
* @param equals Should this query express the {@code "="} relation or the {@code "<>"} relation.
*
* @since 5.2.2
*/