RLMPropertyType
enum RLMPropertyType : int32_t {}
RLMPropertyType is an enumeration describing all property types supported in Realm models.
For more information, see Realm Models.
-
Integers:
NSInteger,int,long,Int(Swift)Declaration
Objective-C
RLMPropertyTypeInt = 0 -
Booleans:
BOOL,bool,Bool(Swift)Declaration
Objective-C
RLMPropertyTypeBool = 1 -
Floating-point numbers:
float,Float(Swift)Declaration
Objective-C
RLMPropertyTypeFloat = 9 -
Double-precision floating-point numbers:
double,Double(Swift)Declaration
Objective-C
RLMPropertyTypeDouble = 10
-
Strings:
NSString,String(Swift)Declaration
Objective-C
RLMPropertyTypeString = 2 -
Binary data:
NSDataDeclaration
Objective-C
RLMPropertyTypeData = 4 -
Any object:
id.This property type is no longer supported for new models. However, old models with any-typed properties are still supported for migration purposes.
Declaration
Objective-C
RLMPropertyTypeAny = 6 -
Dates:
NSDateDeclaration
Objective-C
RLMPropertyTypeDate = 8
-
Realm model objects. See Realm Models for more information.
Declaration
Objective-C
RLMPropertyTypeObject = 12 -
Realm arrays. See Realm Models for more information.
Declaration
Objective-C
RLMPropertyTypeArray = 13 -
Realm linking objects. See Realm Models for more information.
Declaration
Objective-C
RLMPropertyTypeLinkingObjects = 14
View on GitHub
Install in Dash
RLMPropertyType Enum Reference