Interface | Description |
---|---|
Realm.Transaction |
Encapsulates a Realm transaction.
|
RealmChangeListener |
Using RealmChangeListener, it is possible to be notified when a Realm instance has been updated.
|
RealmMigration |
The RealmMigration class is used to describe the migration of one Realm schema to another.
|
Class | Description |
---|---|
Realm |
The Realm class is the storage and transactional manager of your object persistent store.
|
RealmBaseAdapter<T extends RealmObject> |
The RealmBaseAdapter class is an abstract utility class for binding UI elements to Realm data,
much like an
CursorAdapter . |
RealmConfiguration |
A RealmConfiguration is used to setup a specific Realm instance.
|
RealmConfiguration.Builder |
RealmConfiguration.Builder used to construct instances of a RealmConfiguration in a fluent manner.
|
RealmList<E extends RealmObject> |
RealmList is used to model one-to-many relationships in a
RealmObject . |
RealmObject |
In Realm you define your model classes by sub-classing RealmObject and adding fields to be
persisted.
|
RealmQuery<E extends RealmObject> |
A RealmQuery encapsulates a query on a
Realm or a RealmResults
using the Builder pattern. |
RealmResults<E extends RealmObject> |
This class holds all the matches of a
RealmQuery for a given Realm. |