RLMObjectSchema.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 <Foundation/Foundation.h>
  19. NS_ASSUME_NONNULL_BEGIN
  20. @class RLMProperty;
  21. /**
  22. This class represents Realm model object schemas.
  23. When using Realm, `RLMObjectSchema` instances allow performing migrations and
  24. introspecting the database's schema.
  25. Object schemas map to tables in the core database.
  26. */
  27. @interface RLMObjectSchema : NSObject<NSCopying>
  28. #pragma mark - Properties
  29. /**
  30. An array of `RLMProperty` instances representing the managed properties of a class described by the schema.
  31. @see `RLMProperty`
  32. */
  33. @property (nonatomic, readonly, copy) NSArray<RLMProperty *> *properties;
  34. /**
  35. The name of the class the schema describes.
  36. */
  37. @property (nonatomic, readonly) NSString *className;
  38. /**
  39. The property which serves as the primary key for the class the schema describes, if any.
  40. */
  41. @property (nonatomic, readonly, nullable) RLMProperty *primaryKeyProperty;
  42. /**
  43. Whether this object type is embedded.
  44. */
  45. @property (nonatomic, readonly) BOOL isEmbedded;
  46. #pragma mark - Methods
  47. /**
  48. Retrieves an `RLMProperty` object by the property name.
  49. @param propertyName The property's name.
  50. @return An `RLMProperty` object, or `nil` if there is no property with the given name.
  51. */
  52. - (nullable RLMProperty *)objectForKeyedSubscript:(NSString *)propertyName;
  53. /**
  54. Returns whether two `RLMObjectSchema` instances are equal.
  55. */
  56. - (BOOL)isEqualToObjectSchema:(RLMObjectSchema *)objectSchema;
  57. @end
  58. NS_ASSUME_NONNULL_END