Package io. realm. kotlin. schema
Types
List Property Type
Link copied to clipboard
data class ListPropertyType(storageType: RealmStorageType, isNullable: Boolean, isComputed: Boolean) : RealmPropertyType
Content copied to clipboard
A RealmPropertyType describing list properties like RealmList or RealmResults.
Map Property Type
Link copied to clipboard
data class MapPropertyType(storageType: RealmStorageType, isNullable: Boolean) : RealmPropertyType
Content copied to clipboard
A RealmPropertyType describing map properties like RealmDictionary.
Realm Class
Link copied to clipboard
A RealmClass describing the object model of a specific class.
Realm Class Kind
Link copied to clipboard
Enum describing what kind of Realm object it is.
Realm Property
Link copied to clipboard
A RealmProperty describes the properties of a class property in the object model.
Realm Property Type
Link copied to clipboard
A RealmPropertyType describes the type of a specific property in the object model.
Realm Schema
Link copied to clipboard
A schema that describes the object model of the underlying realm.
Realm Storage Type
Link copied to clipboard
The various types that are used when storing the property values in the realm.
Set Property Type
Link copied to clipboard
data class SetPropertyType(storageType: RealmStorageType, isNullable: Boolean) : RealmPropertyType
Content copied to clipboard
A RealmPropertyType describing set properties like RealmSet.
Value Property Type
Link copied to clipboard
data class ValuePropertyType(storageType: RealmStorageType, isNullable: Boolean, isPrimaryKey: Boolean, isIndexed: Boolean, isFullTextIndexed: Boolean) : RealmPropertyType
Content copied to clipboard
A RealmPropertyType describing single value properties.