RLMProperty.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2014 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Realm/RLMConstants.h>
  19. NS_ASSUME_NONNULL_BEGIN
  20. /// :nodoc:
  21. @protocol RLMInt @end
  22. /// :nodoc:
  23. @protocol RLMBool @end
  24. /// :nodoc:
  25. @protocol RLMDouble @end
  26. /// :nodoc:
  27. @protocol RLMFloat @end
  28. /// :nodoc:
  29. @protocol RLMString @end
  30. /// :nodoc:
  31. @protocol RLMDate @end
  32. /// :nodoc:
  33. @protocol RLMData @end
  34. /// :nodoc:
  35. @protocol RLMDecimal128 @end
  36. /// :nodoc:
  37. @protocol RLMObjectId @end
  38. /// :nodoc:
  39. @protocol RLMUUID @end
  40. /// :nodoc:
  41. @interface NSNumber ()<RLMInt, RLMBool, RLMDouble, RLMFloat>
  42. @end
  43. /**
  44. `RLMProperty` instances represent properties managed by a Realm in the context
  45. of an object schema. Such properties may be persisted to a Realm file or
  46. computed from other data from the Realm.
  47. When using Realm, `RLMProperty` instances allow performing migrations and
  48. introspecting the database's schema.
  49. These property instances map to columns in the core database.
  50. */
  51. @interface RLMProperty : NSObject
  52. #pragma mark - Properties
  53. /**
  54. The name of the property.
  55. */
  56. @property (nonatomic, readonly) NSString *name;
  57. /**
  58. The type of the property.
  59. @see `RLMPropertyType`
  60. */
  61. @property (nonatomic, readonly) RLMPropertyType type;
  62. /**
  63. Indicates whether this property is indexed.
  64. @see `RLMObject`
  65. */
  66. @property (nonatomic, readonly) BOOL indexed;
  67. /**
  68. For `RLMObject` and `RLMCollection` properties, the name of the class of object stored in the property.
  69. */
  70. @property (nonatomic, readonly, copy, nullable) NSString *objectClassName;
  71. /**
  72. For linking objects properties, the property name of the property the linking objects property is linked to.
  73. */
  74. @property (nonatomic, readonly, copy, nullable) NSString *linkOriginPropertyName;
  75. /**
  76. Indicates whether this property is optional.
  77. */
  78. @property (nonatomic, readonly) BOOL optional;
  79. /**
  80. Indicates whether this property is an array.
  81. */
  82. @property (nonatomic, readonly) BOOL array;
  83. /**
  84. Indicates whether this property is a set.
  85. */
  86. @property (nonatomic, readonly) BOOL set;
  87. /**
  88. Indicates whether this property is a dictionary.
  89. */
  90. @property (nonatomic, readonly) BOOL dictionary;
  91. /**
  92. Indicates whether this property is an array or set.
  93. */
  94. @property (nonatomic, readonly) BOOL collection;
  95. #pragma mark - Methods
  96. /**
  97. Returns whether a given property object is equal to the receiver.
  98. */
  99. - (BOOL)isEqualToProperty:(RLMProperty *)property;
  100. @end
  101. /**
  102. An `RLMPropertyDescriptor` instance represents a specific property on a given class.
  103. */
  104. @interface RLMPropertyDescriptor : NSObject
  105. /**
  106. Creates and returns a property descriptor.
  107. @param objectClass The class of this property descriptor.
  108. @param propertyName The name of this property descriptor.
  109. */
  110. + (instancetype)descriptorWithClass:(Class)objectClass propertyName:(NSString *)propertyName;
  111. /// The class of the property.
  112. @property (nonatomic, readonly) Class objectClass;
  113. /// The name of the property.
  114. @property (nonatomic, readonly) NSString *propertyName;
  115. @end
  116. NS_ASSUME_NONNULL_END