Skip to content

Commit 8b63237

Browse files
committed
Fix JavaDoc warnings
1 parent c26d02c commit 8b63237

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/org/mybatis/dynamic/sql/SqlBuilder.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,29 @@ public interface SqlBuilder {
110110

111111
/**
112112
* Renders as select count(distinct column) from table...
113+
*
114+
* @param column the column to count
115+
* @return the next step in the DSL
113116
*/
114117
static CountDSL.FromGatherer<SelectModel> countDistinctColumn(BasicColumn column) {
115118
return CountDSL.countDistinct(column);
116119
}
117120

118121
/**
119122
* Renders as select count(column) from table...
123+
*
124+
* @param column the column to count
125+
* @return the next step in the DSL
120126
*/
121127
static CountDSL.FromGatherer<SelectModel> countColumn(BasicColumn column) {
122128
return CountDSL.count(column);
123129
}
124130

125131
/**
126132
* Renders as select count(*) from table...
133+
*
134+
* @param table the table to count
135+
* @return the next step in the DSL
127136
*/
128137
static CountDSL<SelectModel> countFrom(SqlTable table) {
129138
return CountDSL.countFrom(table);

0 commit comments

Comments
 (0)