Back to project page android-sqlite-kvs.
The source code is released under:
Apache License
If you think the Android project android-sqlite-kvs 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 jp.fkmsoft.libs.sqlitekvs; //w w w.ja v a 2s . c o m import java.util.List; /** * Root interface of Key-Value storage */ public interface KVS<T> { void put(String key, T value); T get(String key); List<T> getAll(); boolean commit(); boolean close(); }