mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
342 B
Java
15 lines
342 B
Java
15 years ago
|
package com.todoroo.andlib.data.sql;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.ArrayList;
|
||
|
|
||
|
public class GroupBy {
|
||
|
private List<Field> fields = new ArrayList<Field>();
|
||
|
|
||
|
public static GroupBy groupBy(Field field) {
|
||
|
GroupBy groupBy = new GroupBy();
|
||
|
groupBy.fields.add(field);
|
||
|
return groupBy;
|
||
|
}
|
||
|
}
|