class DJIKeyedValue
@interface DJIKeyedValue : NSObject
Header: DJIKeyedValue.h Inherits From: NSObject
Description:
DJIKeyedValue
is a container object for values associated with DJIKey
objects. The raw value is held inside value
and convenience methods are offers for quicker access.
Class Members:
property value
@property (readonly , nonatomic , nullable ) id value
Description:
The raw value object. For struct, the value is held in an NSValue.
property charValue
@property (readonly , nonatomic ) char charValue
Description:
Convenience accessor to char value.
property unsignedCharValue
@property (readonly , nonatomic ) unsigned char unsignedCharValue
Description:
Convenience accessor to unsigned char value.
property shortValue
@property (readonly , nonatomic ) short shortValue
Description:
Convenience accessor to short value.
property unsignedShortValue
@property (readonly , nonatomic ) unsigned short unsignedShortValue
Description:
Convenience accessor to unsigned short value.
property intValue
@property (readonly , nonatomic ) int intValue
Description:
Convenience accessor to int value.
property unsignedIntValue
@property (readonly , nonatomic ) unsigned int unsignedIntValue
Description:
Convenience accessor to unsigned int value.
property longValue
@property (readonly , nonatomic ) long longValue
Description:
Convenience accessor to long value.
property unsignedLongValue
@property (readonly , nonatomic ) unsigned long unsignedLongValue
Description:
Convenience accessor to unsigned long value.
property longLongValue
@property (readonly , nonatomic ) long long longLongValue
Description:
Convenience accessor to long long value.
property unsignedLongLongValue
@property (readonly , nonatomic ) unsigned long long unsignedLongLongValue
Description:
Convenience accessor to unsigned long long value.
property floatValue
@property (readonly , nonatomic ) float floatValue
Description:
Convenience accessor to float value.
property doubleValue
@property (readonly , nonatomic ) double doubleValue
Description:
Convenience accessor to double value.
property boolValue
@property (readonly , nonatomic ) BOOL boolValue
Description:
Convenience accessor to bool value.
property integerValue
@property (readonly , nonatomic ) NSInteger integerValue
Description:
Convenience accessor to NSInteger value.
property unsignedIntegerValue
@property (readonly , nonatomic ) NSUInteger unsignedIntegerValue
Description:
Convenience accessor to NSUInteger value.
property stringValue
@property (readonly , nonatomic , nullable , copy ) NSString *stringValue
Description:
Convenience accessor to string value.