MBMStylePropertyValue.h 855 B

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxCoreMaps/MBMStylePropertyValueKind.h>
  4. /** Holds a style property value with meta data. */
  5. NS_SWIFT_NAME(StylePropertyValue)
  6. __attribute__((visibility ("default")))
  7. @interface MBMStylePropertyValue : NSObject
  8. // This class provides custom init which should be called
  9. - (nonnull instancetype)init NS_UNAVAILABLE;
  10. // This class provides custom init which should be called
  11. + (nonnull instancetype)new NS_UNAVAILABLE;
  12. - (nonnull instancetype)initWithValue:(nonnull id)value
  13. kind:(MBMStylePropertyValueKind)kind;
  14. /** The property value. */
  15. @property (nonatomic, readonly, nonnull, copy) id value;
  16. /** The kind of the property value. */
  17. @property (nonatomic, readonly) MBMStylePropertyValueKind kind;
  18. @end