ListPropertyType

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

A RealmPropertyType describing list properties like RealmList or RealmResults.

Constructors

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

Properties

isComputed
Link copied to clipboard
val isComputed: Boolean

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

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

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

storageType
Link copied to clipboard
open override val storageType: RealmStorageType

The type of elements inside the list.