Skip to content

Commit

Permalink
Add author tag on collectors (gstamatelat#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
gstamatelat committed Dec 24, 2017
1 parent d2c6726 commit 0cadb74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* accumulated result into a final sample {@link Collection} after all input elements have been processed.
*
* @param <E> the type of input elements
* @author Giorgos Stamatelatos
*/
public class RandomSamplingCollector<E>
implements Collector<E, RandomSampling<E>, Collection<E>> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* the accumulated result into a final sample {@link Collection} after all input elements have been processed.
*
* @param <E> the type of input elements
* @author Giorgos Stamatelatos
*/
public class WeightedRandomSamplingCollector<E>
implements Collector<Map.Entry<E, Double>, WeightedRandomSampling<E>, Collection<E>> {
Expand Down

0 comments on commit 0cadb74

Please sign in to comment.