DynamicRealmObject
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
getNullableValue
Link copied to clipboard
getNullableValueList
Link copied to clipboard
getObject
Link copied to clipboard
getObjectList
Link copied to clipboard
abstract fun getObjectList(propertyName: String): RealmList<out DynamicRealmObject>
Content copied to clipboard
Returns the list of objects referenced by the property name as a RealmList.
getValueList
Link copied to clipboard
Properties
Inheritors
DynamicMutableRealmObject
Link copied to clipboard
Extensions
getNullableValue
Link copied to clipboard
inline fun <T : Any> DynamicRealmObject.getNullableValue(fieldName: String): T?
Content copied to clipboard
getNullableValueList
Link copied to clipboard
inline fun <T : Any> DynamicRealmObject.getNullableValueList(fieldName: String): RealmList<T?>
Content copied to clipboard
Returns the list of nullable elements referenced by the property name as a RealmList.
getValueList
Link copied to clipboard
inline fun <T : Any> DynamicRealmObject.getValueList(fieldName: String): RealmList<T>
Content copied to clipboard
Returns the list referenced by the property name as a RealmList.