ValuePropertyType

data class ValuePropertyType(storageType: RealmStorageType, isNullable: Boolean, isPrimaryKey: Boolean, isIndexed: Boolean) : RealmPropertyType

A ValuePropertyType describes singular value properties.

Constructors

ValuePropertyType
Link copied to clipboard
fun ValuePropertyType(storageType: RealmStorageType, isNullable: Boolean, isPrimaryKey: Boolean, isIndexed: Boolean)

Properties

isIndexed
Link copied to clipboard
val isIndexed: Boolean
Indicates whether there is an index associated with this property.
isNullable
Link copied to clipboard
open override val isNullable: Boolean
Indicates whether the storage element can be null.
isPrimaryKey
Link copied to clipboard
val isPrimaryKey: Boolean
Indicates whether this property is the primary key of the class in the object model.
storageType
Link copied to clipboard
open override val storageType: RealmStorageType
The type that is used when storing the property values in the realm.