public static final class RealmConfiguration.Builder extends Object
Constructor and Description |
---|
Builder(Context context)
Creates an instance of the Builder for the RealmConfiguration.
|
Builder(Context context,
File folder)
Creates an instance of the Builder for the RealmConfiguration.
|
Builder(File folder)
Deprecated.
Please use
#Builder(Context, File) instead. |
Modifier and Type | Method and Description |
---|---|
RealmConfiguration.Builder |
assetFile(Context context,
String assetFile)
Copies the Realm file from the given asset file path.
|
RealmConfiguration |
build()
Creates the RealmConfiguration based on the builder parameters.
|
RealmConfiguration.Builder |
deleteRealmIfMigrationNeeded()
Setting this will change the behavior of how migration exceptions are handled.
|
RealmConfiguration.Builder |
encryptionKey(byte[] key)
Sets the 64 bit key used to encrypt and decrypt the Realm file.
|
RealmConfiguration.Builder |
initialData(Realm.Transaction transaction)
Sets the initial data in
Realm . |
RealmConfiguration.Builder |
inMemory()
Setting this will create an in-memory Realm instead of saving it to disk.
|
RealmConfiguration.Builder |
migration(RealmMigration migration)
Sets the
RealmMigration to be run if a migration is needed. |
RealmConfiguration.Builder |
modules(Object baseModule,
Object... additionalModules)
Replaces the existing module(s) with one or more
RealmModule s. |
RealmConfiguration.Builder |
name(String filename)
Sets the filename for the Realm.
|
RealmConfiguration.Builder |
rxFactory(RxObservableFactory factory)
Sets the
RxObservableFactory used to create Rx Observables from Realm objects. |
RealmConfiguration.Builder |
schemaVersion(long schemaVersion)
Sets the schema version of the Realm.
|
@Deprecated public Builder(File folder)
#Builder(Context, File)
instead.folder
- the folder to save Realm file in. Folder must be writable.IllegalArgumentException
- if folder doesn't exist or isn't writable.public Builder(Context context)
This will use the app's own internal directory for storing the Realm file. This does not require any
additional permissions. The default location is /data/data/<packagename>/files
, but can
change depending on vendor implementations of Android.
context
- the Android application context.public Builder(Context context, File folder)
The Realm file will be saved in the provided folder, and it might require additional permissions.
context
- the Android application context.folder
- the folder to save Realm file in. Folder must be writable.IllegalArgumentException
- if folder doesn't exist or isn't writable.public RealmConfiguration.Builder name(String filename)
public RealmConfiguration.Builder encryptionKey(byte[] key)
public RealmConfiguration.Builder schemaVersion(long schemaVersion)
If no migration code is provided, Realm will throw a
RealmMigrationNeededException
.
migration(RealmMigration)
public RealmConfiguration.Builder migration(RealmMigration migration)
RealmMigration
to be run if a migration is needed. If this migration fails to
upgrade the on-disc schema to the runtime schema, a RealmMigrationNeededException
will be thrown.public RealmConfiguration.Builder deleteRealmIfMigrationNeeded()
RealmMigrationNeededException
the on-disc Realm will be cleared and recreated
with the new Realm schema.
This cannot be configured to have an asset file at the same time by calling
assetFile(Context, String)
as the provided asset file will be deleted in migrations.
WARNING! This will result in loss of data.
IllegalStateException
- if configured to use an asset file by calling assetFile(Context, String)
previously.public RealmConfiguration.Builder inMemory()
Note that because in-memory Realms are not persisted, you must be sure to hold on to at least one non-closed reference to the in-memory Realm object with the specific name as long as you want the data to last.
public RealmConfiguration.Builder modules(Object baseModule, Object... additionalModules)
RealmModule
s. Using this method will replace the
current schema for this Realm with the schema defined by the provided modules.
A reference to the default Realm module containing all Realm classes in the project (but not dependencies),
can be found using Realm.getDefaultModule()
. Combining the schema from the app project and a library
dependency is thus done using the following code:
builder.modules(Realm.getDefaultMode(), new MyLibraryModule());
baseModule
- the first Realm module (required).additionalModules
- the additional Realm modulesIllegalArgumentException
- if any of the modules doesn't have the RealmModule
annotation.Realm.getDefaultModule()
public RealmConfiguration.Builder rxFactory(RxObservableFactory factory)
RxObservableFactory
used to create Rx Observables from Realm objects.
The default factory is RealmObservableFactory
.factory
- factory to use.public RealmConfiguration.Builder initialData(Realm.Transaction transaction)
Realm
. This transaction will be executed only for the first time
when database file is created or while migrating the data when deleteRealmIfMigrationNeeded()
is set.transaction
- transaction to execute.public RealmConfiguration.Builder assetFile(Context context, String assetFile)
When opening the Realm for the first time, instead of creating an empty file, the Realm file will be copied from the provided asset file and used instead.
This cannot be configured to clear and recreate schema by calling deleteRealmIfMigrationNeeded()
at the same time as doing so will delete the copied asset schema.
WARNING: This could potentially be a lengthy operation and should ideally be done on a background thread.
context
- Android application context.assetFile
- path to the asset database file.IllegalStateException
- if this is configured to clear its schema by calling deleteRealmIfMigrationNeeded()
.public RealmConfiguration build()
RealmConfiguration
.