ValuePropertyType

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

A RealmPropertyType describing single value properties.

Constructors

Link copied to clipboard
constructor(storageType: RealmStorageType, isNullable: Boolean, isPrimaryKey: Boolean, isIndexed: Boolean, isFullTextIndexed: Boolean)

Properties

Link copied to clipboard

Indicates whether there is a full-text index associated with this property.

Link copied to clipboard

Indicates whether there is an index associated with this property.

Link copied to clipboard
open override val isNullable: Boolean

Indicates whether the storage element can be null.

Link copied to clipboard

Indicates whether this property is the primary key of the class in the object model.

Link copied to clipboard
open override val storageType: RealmStorageType

The type that is used when storing the property values in the realm.