Interface | Description |
---|---|
AuthenticationListener |
Interface describing events related to Users and their authentication
|
DynamicRealm.Transaction |
Encapsulates a Realm transaction.
|
OrderedRealmCollection<E extends RealmModel> |
An
OrderedRealmCollection is a collection which maintains an ordering for its elements. |
Realm.Transaction |
Encapsulates a Realm transaction.
|
Realm.Transaction.OnError |
Callback invoked to notify the caller thread about error during the transaction.
|
Realm.Transaction.OnSuccess |
Callback invoked to notify the caller thread about the success of the transaction.
|
RealmAsyncTask |
Represents a pending asynchronous Realm transaction.
|
RealmChangeListener<T> |
RealmChangeListener can be registered with a
Realm , RealmResults or RealmObject
to receive a notification about updates. |
RealmCollection<E extends RealmModel> |
RealmCollection is the root of the collection hierarchy that Realm supports. |
RealmMigration |
The RealmMigration class is used to perform the migration of one Realm schema to another.
|
RealmModel |
Interface for marking classes as RealmObjects, it can be used instead of extending
RealmObject . |
RealmObjectSchema.Function |
Function interface, used when traversing all objects of the current class and apply a function on each.
|
SyncSession.ErrorHandler |
Interface used to report any session errors.
|
SyncUser.Callback | |
UserStore |
Interface for classes responsible for saving and retrieving Object Server users again.
|
Class | Description |
---|---|
DynamicRealm |
DynamicRealm is a dynamic variant of
Realm . |
DynamicRealmObject |
Class that wraps a normal RealmObject in order to allow dynamic access instead of a typed interface.
|
ProxyState<E extends RealmModel> |
This implements
RealmObjectProxy interface, to eliminate copying logic between
RealmObject and DynamicRealmObject . |
Realm |
The Realm class is the storage and transactional manager of your object persistent store.
|
Realm.Transaction.Callback |
Callback invoked to notify the caller thread.
|
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.
|
RealmFileUserStore |
A User Store backed by a Realm file to store user.
|
RealmList<E extends RealmModel> |
RealmList is used to model one-to-many relationships in a
RealmObject . |
RealmObject |
In Realm you define your RealmObject classes by sub-classing RealmObject and adding fields to be persisted.
|
RealmObjectSchema |
Class for interacting with the schema for a given RealmObject class.
|
RealmQuery<E extends RealmModel> |
A RealmQuery encapsulates a query on a
Realm or a RealmResults using the Builder
pattern. |
RealmResults<E extends RealmModel> |
This class holds all the matches of a
RealmQuery for a given Realm. |
RealmSchema |
Class for interacting with the Realm schema using a dynamic API.
|
SyncConfiguration |
An
SyncConfiguration is used to setup a Realm that can be synchronized between devices using the Realm
Object Server. |
SyncConfiguration.Builder |
Builder used to construct instances of a SyncConfiguration in a fluent manner.
|
SyncCredentials |
Credentials represent a login with a 3rd party login provider in an OAuth2 login flow, and are used by the Realm
Object Server to verify the user and grant access.
|
SyncCredentials.IdentityProvider |
Enumeration of the different types of identity providers.
|
SyncManager |
The SyncManager is the central controller for interacting with the Realm Object Server.
|
SyncManager.Debug |
Debugging related options.
|
SyncSession |
This class represents the connection to the Realm Object Server for one
SyncConfiguration . |
SyncUser |
This class represents a user on the Realm Object Server.
|
Enum | Description |
---|---|
Case |
This class describes the Case settings used in Realm queries.
|
ErrorCode |
This class enumerate all potential errors related to using the Object Server or synchronizing data.
|
ErrorCode.Category | |
FieldAttribute |
This class contains all Realm attributes for a Realm field.
|
RealmFieldType |
List of the types used by Realm's underlying storage engine.
|
SessionState |
Enum describing the various states the Session Finite-State-Machine can be in.
|
Sort |
This class describes the sorting order used in Realm queries.
|
Exception | Description |
---|---|
ObjectServerError |
This class is a wrapper for all errors happening when communicating with the Realm Object Server.
|