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; /* w w w . j a v a2s .c o m*/ public class Constants { static final String SELECT = "SELECT"; static final String SPACE = " "; static final String AS = "AS"; static final String COMMA = ","; static final String FROM = "FROM"; static final String ON = "ON"; static final String JOIN = "JOIN"; static final String ALL = "*"; static final String LEFT_PARENTHESIS = "("; static final String RIGHT_PARENTHESIS = ")"; static final String AND = "AND"; static final String BETWEEN = "BETWEEN"; static final String LIKE = "LIKE"; static final String OR = "OR"; static final String ORDER_BY = "ORDER BY"; static final String GROUP_BY = "GROUP BY"; static final String WHERE = "WHERE"; public static final String EXISTS = "EXISTS"; }