RLMValue.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 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. #import <Realm/RLMDecimal128.h>
  20. #import <Realm/RLMObject.h>
  21. #import <Realm/RLMObjectBase.h>
  22. #import <Realm/RLMObjectId.h>
  23. #import <Realm/RLMProperty.h>
  24. #pragma mark RLMValue
  25. /**
  26. RLMValue is a property type which represents a polymorphic Realm value. This is similar to the usage of
  27. `AnyObject` / `Any` in Swift.
  28. ```
  29. // A property on `MyObject`
  30. @property (nonatomic) id<RLMValue> myAnyValue;
  31. // A property on `AnotherObject`
  32. @property (nonatomic) id<RLMValue> myAnyValue;
  33. MyObject *myObject = [MyObject createInRealm:realm withValue:@[]];
  34. myObject.myAnyValue = @1234; // underlying type is NSNumber.
  35. myObject.myAnyValue = @"hello"; // underlying type is NSString.
  36. AnotherObject *anotherObject = [AnotherObject createInRealm:realm withValue:@[]];
  37. myObject.myAnyValue = anotherObject; // underlying type is RLMObject.
  38. ```
  39. The following types conform to RLMValue:
  40. `NSData`
  41. `NSDate`
  42. `NSNull`
  43. `NSNumber`
  44. `NSUUID`
  45. `NSString`
  46. `RLMObject
  47. `RLMObjectId`
  48. `RLMDecimal128`
  49. */
  50. @protocol RLMValue
  51. /// Describes the type of property stored.
  52. @property (readonly) RLMPropertyType rlm_valueType;
  53. @end
  54. /// :nodoc:
  55. @interface NSNull (RLMValue)<RLMValue>
  56. @end
  57. /// :nodoc:
  58. @interface NSNumber (RLMValue)<RLMValue>
  59. @end
  60. /// :nodoc:
  61. @interface NSString (RLMValue)<RLMValue>
  62. @end
  63. /// :nodoc:
  64. @interface NSData (RLMValue)<RLMValue>
  65. @end
  66. /// :nodoc:
  67. @interface NSDate (RLMValue)<RLMValue>
  68. @end
  69. /// :nodoc:
  70. @interface NSUUID (RLMValue)<RLMValue>
  71. @end
  72. /// :nodoc:
  73. @interface RLMDecimal128 (RLMValue)<RLMValue>
  74. @end
  75. /// :nodoc:
  76. @interface RLMObjectBase (RLMValue)<RLMValue>
  77. @end
  78. /// :nodoc:
  79. @interface RLMObjectId (RLMValue)<RLMValue>
  80. @end