Back to project page Android-1.
The source code is released under:
MIT License
If you think the Android project Android-1 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.example.georgi.sqliteexample; // w ww . j a v a 2 s . c o m /** * Created by georgi on 12/3/14. */ public class FluentApiBuilder { public FluentApiBuilder(){ String string = new FluentApiBuilder().selectFrom("users").where("username").eq("213").build(); } public FluentApiBuilder selectFrom(String tableName){ this.tableName = tableName; return this; } }