All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.android.db.SQLiteOpenHelperConfiguration Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.db;

import android.database.sqlite.SQLiteDatabase;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

/**
 * User: serso
 * Date: 6/3/12
 * Time: 4:33 PM
 */
public interface SQLiteOpenHelperConfiguration {

    @NotNull
    String getName();

    @Nullable
    SQLiteDatabase.CursorFactory getCursorFactory();

    int getVersion();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy