ListPropertyType

data class ListPropertyType(val storageType: RealmStorageType, val isNullable: Boolean = false, val isComputed: Boolean) : RealmPropertyType

A RealmPropertyType describing list properties like RealmList or RealmResults.

Constructors

Link copied to clipboard
constructor(storageType: RealmStorageType, isNullable: Boolean = false, isComputed: Boolean)

Properties

Link copied to clipboard

Whether or not this property is computed. Computed properties are not found inside the Realm file itself, but are calculated based on its state.

Link copied to clipboard
open override val isNullable: Boolean = false

Whether or not the elements inside the list can be null.

Link copied to clipboard
open override val storageType: RealmStorageType

The type of elements inside the list.