- Realm - Class in io.realm
-
The Realm class is the storage and transactional manager of your object persistent store.
- realm - Variable in class io.realm.RealmObject
-
- RealmBaseAdapter<T extends RealmObject> - Class in io.realm
-
- RealmBaseAdapter(Context, RealmResults<T>, boolean) - Constructor for class io.realm.RealmBaseAdapter
-
- RealmChangeListener - Interface in io.realm
-
Using RealmChangeListener, it is possible to be notified when another instance of a Realm is
changed.
- RealmException - Exception in io.realm.exceptions
-
RealmException is Realm specific exceptions.
- RealmException(String) - Constructor for exception io.realm.exceptions.RealmException
-
- RealmIOException - Exception in io.realm.exceptions
-
- RealmIOException(Throwable) - Constructor for exception io.realm.exceptions.RealmIOException
-
- RealmIOException() - Constructor for exception io.realm.exceptions.RealmIOException
-
- RealmIOException(String) - Constructor for exception io.realm.exceptions.RealmIOException
-
- RealmIOException(String, Throwable) - Constructor for exception io.realm.exceptions.RealmIOException
-
- RealmList<E extends RealmObject> - Class in io.realm
-
RealmList is used in one-to-many relationships.
- RealmMigration - Interface in io.realm
-
RealmMigration is used to allow user defined migration of one model to a another.
- RealmMigrationNeededException - Exception in io.realm.exceptions
-
- RealmMigrationNeededException(String) - Constructor for exception io.realm.exceptions.RealmMigrationNeededException
-
- RealmMigrationNeededException(String, Throwable) - Constructor for exception io.realm.exceptions.RealmMigrationNeededException
-
- RealmObject - Class in io.realm
-
In Realm you define your model classes by sub-classing RealmObject and adding fields to be
persisted.
- RealmObject() - Constructor for class io.realm.RealmObject
-
- RealmQuery<E extends RealmObject> - Class in io.realm
-
- RealmQuery(Realm, Class<E>) - Constructor for class io.realm.RealmQuery
-
Creating a RealmQuery instance.
- RealmQuery(RealmResults, Class<E>) - Constructor for class io.realm.RealmQuery
-
Create a RealmQuery instance from a @{link io.realm.RealmResults}.
- realmResults - Variable in class io.realm.RealmBaseAdapter
-
- RealmResults<E extends RealmObject> - Class in io.realm
-
A RealmResults list contains a list of objects of a given type that matches the query.
- realmsCache - Static variable in class io.realm.Realm
-
- refresh() - Method in class io.realm.Realm
-
Refresh the Realm instance and all the RealmResults and RealmObjects instances coming from it
- remove(int) - Method in class io.realm.RealmList
- remove(int) - Method in class io.realm.RealmResults
-
Removes an object at a given index.
- removeAllChangeListeners() - Method in class io.realm.Realm
-
Remove all user-defined change listeners
- removeChangeListener(RealmChangeListener) - Method in class io.realm.Realm
-
Remove the specified change listener
- removeFromRealm() - Method in class io.realm.RealmObject
-
Removes the object from the Realm it is currently associated to.
- removeLast() - Method in class io.realm.RealmResults
-
Removes the last object in the list.
- row - Variable in class io.realm.RealmObject
-