Interface | Description |
---|---|
Realm.Transaction |
Encapsulates a Realm transaction.
|
RealmChangeListener |
Using RealmChangeListener, it is possible to be notified when another instance of a Realm is
changed.
|
RealmMigration |
RealmMigration is used to allow user defined migration of one model to a another.
|
Class | Description |
---|---|
Realm |
The Realm class is the storage and transactional manager of your object persistent store.
|
RealmBaseAdapter<T extends RealmObject> | |
RealmList<E extends RealmObject> |
RealmList is used in one-to-many relationships in
RealmObject . |
RealmObject |
In Realm you define your model classes by sub-classing RealmObject and adding fields to be
persisted.
|
RealmQuery<E extends RealmObject> | |
RealmResults<E extends RealmObject> |
A RealmResults list contains a list of objects of a given type that matches the query.
|