DITDocumentIDPath
@interface DITDocumentIDPath : NSObject
Provides an interface to specify a path to a key in a document ID that you can then call a function
on to get the value at the specified key as a specific type. You obtain a DITDocumentIDPath by
subscripting a DITDocumentID and you can then further subscript a DITDocumentIDPath to further
specify the key of the document ID that you want to get the value of. This is only really useful if
you’re working with a document ID whose underlying value is a dictionary or an array.
-
Used to specify a path to a key in the document ID that you can subscript further to access a nested key in the document ID.
Declaration
Objective-C
- (nonnull DITDocumentIDPath *)objectForKeyedSubscript:(nonnull NSString *)key;Parameters
keyThe next part of the path needed to get to the key in the document ID you wish to get the value of.
Return Value
The same
DITDocumentIDPathobject with the provided key incorporated into the document ID path. -
Used to specify an index in the array at the preceding key-path specified through the subscripting defined previously. You can subscript the return value further to access a further nested key in the document ID.
Declaration
Objective-C
- (nonnull DITDocumentIDPath *)objectAtIndexedSubscript:(NSUInteger)index;Parameters
indexThe index of the array that you wish to access in the key previously specified with the preceding subscripting.
Return Value
The same
DITDocumentIDPathobject with the provided index incorporated into the document ID path. -
Returns the value at the previously specified key in the document ID as an
NSObjectif possible, otherwise the return value will benil.Declaration
Objective-C
@property (nonatomic, readonly, nullable) id value; -
Returns the value at the previously specified key in the document ID as an
NSStringif possible, otherwise the return value will benil.Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *string; -
Returns the value at the previously specified key in the document ID as an
NSString. If the key was invalid the return value will be an empty string.Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull stringValue; -
Returns the value at the previously specified key in the document ID as a
BOOLif possible, otherwise the return value will benil.Declaration
Objective-C
@property (nonatomic, readonly, nullable) BOOL *boolean; -
Returns the value at the previously specified key in the document ID as a
BOOL. If the key was invalid the return value will befalse.Declaration
Objective-C
@property (nonatomic, readonly) BOOL booleanValue; -
Returns the value at the previously specified key in the document ID as an
NSIntegerif possible, otherwise the return value will be 0.Declaration
Objective-C
@property (nonatomic, readonly) NSInteger integerValue; -
Returns the value at the previously specified key in the document ID as an
NSNumberif possible, otherwise the return value will benil.Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSNumber *number; -
Returns the value at the previously specified key in the document ID as an
NSNumber. If the key was invalid the return value will be anNSNumberwith a value of 0.Declaration
Objective-C
@property (nonatomic, readonly) NSNumber *_Nonnull numberValue; -
Returns the value at the previously specified key in the document ID as an
NSArrayif possible, otherwise the return value will benil.Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSArray *array; -
Returns the value at the previously specified key in the document ID as an
NSArray. If the key was invalid the return value will be an empty array.Declaration
Objective-C
@property (nonatomic, readonly) NSArray *_Nonnull arrayValue; -
Returns the value at the previously specified key in the document ID as an
NSDictionaryif possible, otherwise the return value will benil.Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSDictionary<NSString *, id> *dictionary; -
Returns the value at the previously specified key in the document ID as an
NSDictionary. If the key was invalid the return value will be an empty dictionary.Declaration
Objective-C
@property (nonatomic, readonly) NSDictionary<NSString *, id> *_Nonnull dictionaryValue;
DITDocumentIDPath Class Reference