Back to project page InMemoryDb.
The source code is released under:
Apache License
If you think the Android project InMemoryDb 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 org.gawst.asyncdb.source; /*from w w w. j av a 2 s . com*/ import android.database.Cursor; import org.gawst.asyncdb.source.typed.TypedDatabaseElementHandler; /** * Interface to handle the transformation from {@link E} elements to SQL query selections and from * {@link android.database.Cursor Cursor} to {@link E} elements. * * @param <E> Type of element read/write from the {@link DatabaseSource}. * @author Created by robUx4 on 08/01/2015. */ public interface DatabaseElementHandler<E> extends TypedDatabaseElementHandler<E, Cursor> { }