DynamicMutableRealmObject
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.
Functions
getNullableValue
Link copied to clipboard
getNullableValueList
Link copied to clipboard
getObject
Link copied to clipboard
abstract override fun getObject(propertyName: String): DynamicMutableRealmObject?
Content copied to clipboard
getObjectList
Link copied to clipboard
abstract override fun getObjectList(propertyName: String): RealmList<DynamicMutableRealmObject>
Content copied to clipboard
Returns the list of objects referenced by the property name as a RealmList.
getValueList
Link copied to clipboard