ValuePropertyType

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

A RealmPropertyType describing single value properties.

Constructors

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

Properties

isFullTextIndexed
Link copied to clipboard
val isFullTextIndexed: Boolean

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

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.