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; /*from w w w . j av a 2 s . c o m*/ /** * Interface to access the invalid data detected and thrown with {@link org.gawst.asyncdb.InvalidDbEntry} * * @author Created by Steve Lhomme on 05/01/2015. */ public interface InvalidEntry { /** * @return the list of arguments to pass to the {@link org.gawst.asyncdb.source.DatabaseSource#delete(String, String[]) * DatabaseSource.delete()} when removing this invalid element. * @see org.gawst.asyncdb.source.DatabaseElementHandler#getItemSelectArgs(Object) */ String[] getSelectArgs(); }