Factory
interface Factory
androidx.sqlite.db.SupportSQLiteOpenHelper.Factory |
Factory class to create instances of SupportSQLiteOpenHelper
using Configuration
.
Summary
Public methods |
|
---|---|
abstract SupportSQLiteOpenHelper |
create(@NonNull configuration: SupportSQLiteOpenHelper.Configuration) Creates an instance of |
Public methods
create
@NonNull abstract fun create(@NonNull configuration: SupportSQLiteOpenHelper.Configuration): SupportSQLiteOpenHelper
Creates an instance of SupportSQLiteOpenHelper
using the given configuration.
Parameters | |
---|---|
configuration |
SupportSQLiteOpenHelper.Configuration: The configuration to use while creating the open helper. |
Return | |
---|---|
SupportSQLiteOpenHelper: A SupportSQLiteOpenHelper which can be used to open a database. |