Skip to content

Commit 33f3a65

Browse files
committed
Add javadoc
1 parent d43de5d commit 33f3a65

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

core/src/main/java/tech/tablesaw/columns/Column.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,10 @@ default RollingColumn rolling(final int windowSize) {
164164
return new RollingColumn(this, windowSize);
165165
}
166166

167+
/**
168+
* @param windowSize size of the rolling window to use
169+
* @param center set the operation result at the center of the window or at the end of it
170+
*/
167171
default RollingColumn rolling(final int windowSize, final boolean center) {
168172
return new RollingColumn(this, windowSize, center);
169173
}

0 commit comments

Comments
 (0)