Package-level declarations

Types

Link copied to clipboard

A dynamic mutable realm gives access and allows creation and modification of data in the realm through a generic string based API instead of the conventional Realm API that uses the typed API of the schema classes supplied in the configuration.

Link copied to clipboard

A dynamic mutable realm object gives access and possibility to update the data of the realm objects through a generic string based API instead of the conventional Realm API that only allows access and updates through the properties of the corresponding schema classes supplied in the configuration.

Link copied to clipboard

A dynamic realm gives access to the data of the realm through a generic string based API instead of the conventional Realm API that uses the schema classes supplied in the configuration.

Link copied to clipboard

A dynamic realm object gives access to the data of the realm objects through a generic string based API instead of the conventional Realm API that only allows access through the properties of the corresponding schema classes supplied in the configuration.

Functions

Link copied to clipboard
inline fun <T : Any> DynamicRealmObject.getNullableValue(fieldName: String): T?

Returns the value of a specific nullable value property.

Link copied to clipboard

Returns the set of nullable elements referenced by the property name as a RealmDictionary.

Link copied to clipboard

Returns the list of nullable elements referenced by the property name as a RealmList.

Link copied to clipboard

Returns the set of nullable elements referenced by the property name as a RealmSet.

Link copied to clipboard
inline fun <T : Any> DynamicRealmObject.getValue(fieldName: String): T

Returns the value of a specific value property.

Link copied to clipboard

Returns the set referenced by the property name as a RealmDictionary.

Link copied to clipboard
inline fun <T : Any> DynamicRealmObject.getValueList(fieldName: String): RealmList<T>

Returns the list referenced by the property name as a RealmList.

Link copied to clipboard
inline fun <T : Any> DynamicRealmObject.getValueSet(fieldName: String): RealmSet<T>

Returns the set referenced by the property name as a RealmSet.