JSONStoreQueryPart Class Reference
| Inherits from | NSObject |
| Declared in | JSONStoreQueryPart.h |
Tasks
-
_idsproperty -
_lessThanproperty -
_lessOrEqualThanproperty -
_greaterThanproperty -
_greaterOrEqualThanproperty -
_likeproperty -
_notLikeproperty -
_rightLikeproperty -
_notRightLikeproperty -
_leftLikeproperty -
_notLeftLikeproperty -
_equalproperty -
_notEqualproperty -
_insideproperty -
_notInsideproperty -
_betweenproperty -
_notBetweenproperty -
– searchField:lessThan: -
– searchField:lessOrEqualThan: -
– searchField:greaterThan: -
– searchField:greaterOrEqualThan: -
– searchField:like: -
– searchField:notLike: -
– searchField:leftLike: -
– searchField:notLeftLike: -
– searchField:rightLike: -
– searchField:notRightLike: -
– searchField:equal: -
– searchField:notEqual: -
– searchField:insideValues: -
– searchField:notInsideValues: -
– searchField:between:and: -
– searchField:notBetween:and:
Properties
_between
Private. NSArray with between criteria (e.g. [ [50,100] ]).
@property (nonatomic, retain) NSMutableArray *_betweenAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_equal
Private. NSArray with equal to criteria (e.g. [{name: @“carlos”}]).
@property (nonatomic, retain) NSMutableArray *_equalAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_greaterOrEqualThan
Private. NSArray with greater than or equal to criteria (e.g. [{age: 20}]).
@property (nonatomic, retain) NSMutableArray *_greaterOrEqualThanAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_greaterThan
Private. NSArray with greater than criteria (e.g. [{age: 20}]).
@property (nonatomic, retain) NSMutableArray *_greaterThanAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_ids
Private. Special case when looking for _id values.
@property (nonatomic, retain) NSMutableArray *_idsAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_inside
Private. NSArray with in criteria (e.g. [ [@“carlos”, @“dgonz”, @“mike”] ]).
@property (nonatomic, retain) NSMutableArray *_insideAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_leftLike
Private. NSArray with like criteria (e.g. [{name: @“carlos”}]) that matches only left of the input.
@property (nonatomic, retain) NSMutableArray *_leftLikeAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_lessOrEqualThan
Private. NSArray with less than or equal to criteria (e.g. [{age: 20}]).
@property (nonatomic, retain) NSMutableArray *_lessOrEqualThanAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_lessThan
Private. NSArray with less than criteria (e.g. [{age: 20}]).
@property (nonatomic, retain) NSMutableArray *_lessThanAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_like
Private. NSArray with like criteria (e.g. [{name: @“carlos”}]) that matches right and left of the input.
@property (nonatomic, retain) NSMutableArray *_likeAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_notBetween
Private. NSArray with not between criteria (e.g. [ [50,100] ]).
@property (nonatomic, retain) NSMutableArray *_notBetweenAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_notEqual
Private. NSArray with not equal to criteria (e.g. [{name: @“carlos”}]).
@property (nonatomic, retain) NSMutableArray *_notEqualAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_notInside
Private. NSArray with not in criteria (e.g. [ [@“carlos”, @“dgonz”, @“mike”] ]).
@property (nonatomic, retain) NSMutableArray *_notInsideAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_notLeftLike
Private. NSArray with not like criteria (e.g. [{name: @“carlos”}]) that matches only left of the input.
@property (nonatomic, retain) NSMutableArray *_notLeftLikeAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h_notLike
Private. NSArray with not like criteria (e.g. [{name: @“carlos”}]) that matches right and left of the input.
@property (nonatomic, retain) NSMutableArray *_notLikeAvailability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hInstance Methods
searchField:between:and:
Add a between criteria.
- (void)searchField:(NSString *)searchField between:(NSNumber *)number1 and:(NSNumber *)number2Parameters
- searchField
Search field
- number1
First number in the range
- number2
Last number in the range
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:equal:
Add an equal to criteria.
- (void)searchField:(NSString *)searchField equal:(NSString *)stringParameters
- searchField
Search field
- string
String
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:greaterOrEqualThan:
Add a greater than or equal to criteria.
- (void)searchField:(NSString *)searchField greaterOrEqualThan:(NSNumber *)numberParameters
- searchField
Search field
- number
Number
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:greaterThan:
Add a greater than criteria.
- (void)searchField:(NSString *)searchField greaterThan:(NSNumber *)numberParameters
- searchField
Search field
- number
Number
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:insideValues:
Add an in criteria.
- (void)searchField:(NSString *)searchField insideValues:(NSArray *)valuesParameters
- searchField
Search field
- values
Array of strings
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:leftLike:
Add a like criteria that matches only left of the input.
- (void)searchField:(NSString *)searchField leftLike:(NSString *)stringParameters
- searchField
Search field
- string
String
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:lessOrEqualThan:
Add a less than or equal to criteria.
- (void)searchField:(NSString *)searchField lessOrEqualThan:(NSNumber *)numberParameters
- searchField
Search field
- number
Number
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:lessThan:
Add a less than criteria.
- (void)searchField:(NSString *)searchField lessThan:(NSNumber *)numberParameters
- searchField
Search field
- number
Number
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:like:
Add a like criteria.
- (void)searchField:(NSString *)searchField like:(NSString *)stringParameters
- searchField
Search field
- string
String
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:notBetween:and:
Add a not between criteria.
- (void)searchField:(NSString *)searchField notBetween:(NSNumber *)number1 and:(NSNumber *)number2Parameters
- searchField
Search field
- number1
First number in the range
- number2
Last number in the range
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:notEqual:
Add a not equal to criteria.
- (void)searchField:(NSString *)searchField notEqual:(NSString *)stringParameters
- searchField
Search field
- string
String
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:notInsideValues:
Add a not in criteria.
- (void)searchField:(NSString *)searchField notInsideValues:(NSArray *)valuesParameters
- searchField
Search field
- values
Array of strings
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:notLeftLike:
Add a not like criteria that matches only left of the input.
- (void)searchField:(NSString *)searchField notLeftLike:(NSString *)stringParameters
- searchField
Search field
- string
String
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.hsearchField:notLike:
Add a not like criteria.
- (void)searchField:(NSString *)searchField notLike:(NSString *)stringParameters
- searchField
Search field
- string
String
Availability
IBM Worklight V6.2.0
Declared In
JSONStoreQueryPart.h