CBLQueryRow
@interface CBLQueryRow : NSObjectA single result from a CBLQuery. The NSEnumeration returned by -[CBLQuery run:] produces these.
- 
                  
                  The number of values in this row (if the query has a returning specification.)DeclarationObjective-C @property (readonly, nonatomic) NSUInteger valueCount;
- 
                  
                  The result value at the given index (if the query has a returning specification.)DeclarationObjective-C - (nullable id)valueAtIndex:(NSUInteger)index;ParametersindexThe value index. Return ValueThe result value. 
- 
                  
                  The result boolean value at the given index. DeclarationObjective-C - (_Bool)booleanAtIndex:(NSUInteger)index;ParametersindexThe value index. Return ValueThe result boolean value. 
- 
                  
                  The result integer value at the given index. DeclarationObjective-C - (NSInteger)integerAtIndex:(NSUInteger)index;ParametersindexThe value index. Return ValueThe result integer value. 
- 
                  
                  The result float value at the given index. DeclarationObjective-C - (float)floatAtIndex:(NSUInteger)index;ParametersindexThe value index. Return ValueThe result float value. 
- 
                  
                  The result double value at the given index. DeclarationObjective-C - (double)doubleAtIndex:(NSUInteger)index;ParametersindexThe value index. Return ValueThe result double value. 
- 
                  
                  The result string value at the given index. DeclarationObjective-C - (nullable NSString *)stringAtIndex:(NSUInteger)index;ParametersindexThe value index. Return ValueThe result string value. 
- 
                  
                  The result date value at the given index. DeclarationObjective-C - (nullable NSDate *)dateAtIndex:(NSUInteger)index;ParametersindexThe value index. Return ValueThe result date value. 
- 
                  
                  The result object value at the given index. DeclarationObjective-C - (nullable id)objectAtIndexedSubscript:(NSUInteger)subscript;ParameterssubscriptThe value index. Return ValueThe result object value. 
- 
                  
                  Not Available. DeclarationObjective-C - (nonnull instancetype)init;
 CBLQueryRow Class Reference
        CBLQueryRow Class Reference