Back to project page TwelveRules.
The source code is released under:
Apache License
If you think the Android project TwelveRules listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.manuelpeinado.sql_dsl; //from w w w . ja va 2 s. c om 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; } }