Inherits from NSObject
Declared in JSONStoreQueryPart.h

Overview

Contains JSONStore query part operations.

Properties

_between

Private. NSArray with between criteria (e.g. [ [50,100] ]).

@property (nonatomic, retain) NSMutableArray *_between

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_equal

Private. NSArray with equal to criteria (e.g. [{name: @“carlos”}]).

@property (nonatomic, retain) NSMutableArray *_equal

Availability

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 *_greaterOrEqualThan

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_greaterThan

Private. NSArray with greater than criteria (e.g. [{age: 20}]).

@property (nonatomic, retain) NSMutableArray *_greaterThan

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_ids

Private. Special case when looking for _id values.

@property (nonatomic, retain) NSMutableArray *_ids

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_inside

Private. NSArray with in criteria (e.g. [ [@“carlos”, @“dgonz”, @“mike”] ]).

@property (nonatomic, retain) NSMutableArray *_inside

Availability

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 *_leftLike

Availability

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 *_lessOrEqualThan

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_lessThan

Private. NSArray with less than criteria (e.g. [{age: 20}]).

@property (nonatomic, retain) NSMutableArray *_lessThan

Availability

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 *_like

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_notBetween

Private. NSArray with not between criteria (e.g. [ [50,100] ]).

@property (nonatomic, retain) NSMutableArray *_notBetween

Availability

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 *_notEqual

Availability

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 *_notInside

Availability

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 *_notLeftLike

Availability

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 *_notLike

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_notRightLike

Private. NSArray with not like criteria (e.g. [{name: @“carlos”}]) that matches only right of the input.

@property (nonatomic, retain) NSMutableArray *_notRightLike

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

_rightLike

Private. NSArray with like criteria (e.g. [{name: @“carlos”}]) that matches only right of the input.

@property (nonatomic, retain) NSMutableArray *_rightLike

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

Instance Methods

searchField:between:and:

Add a between criteria.

- (void)searchField:(NSString *)searchField between:(NSNumber *)number1 and:(NSNumber *)number2

Parameters

searchField

Search field

number1

First number in the range

number2

Last number in the range

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:equal:

Add an equal to criteria.

- (void)searchField:(NSString *)searchField equal:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:greaterOrEqualThan:

Add a greater than or equal to criteria.

- (void)searchField:(NSString *)searchField greaterOrEqualThan:(NSNumber *)number

Parameters

searchField

Search field

number

Number

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:greaterThan:

Add a greater than criteria.

- (void)searchField:(NSString *)searchField greaterThan:(NSNumber *)number

Parameters

searchField

Search field

number

Number

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:insideValues:

Add an in criteria.

- (void)searchField:(NSString *)searchField insideValues:(NSArray *)values

Parameters

searchField

Search field

values

Array of strings

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:leftLike:

Add a like criteria that matches only left of the input.

- (void)searchField:(NSString *)searchField leftLike:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:lessOrEqualThan:

Add a less than or equal to criteria.

- (void)searchField:(NSString *)searchField lessOrEqualThan:(NSNumber *)number

Parameters

searchField

Search field

number

Number

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:lessThan:

Add a less than criteria.

- (void)searchField:(NSString *)searchField lessThan:(NSNumber *)number

Parameters

searchField

Search field

number

Number

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:like:

Add a like criteria.

- (void)searchField:(NSString *)searchField like:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:notBetween:and:

Add a not between criteria.

- (void)searchField:(NSString *)searchField notBetween:(NSNumber *)number1 and:(NSNumber *)number2

Parameters

searchField

Search field

number1

First number in the range

number2

Last number in the range

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:notEqual:

Add a not equal to criteria.

- (void)searchField:(NSString *)searchField notEqual:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:notInsideValues:

Add a not in criteria.

- (void)searchField:(NSString *)searchField notInsideValues:(NSArray *)values

Parameters

searchField

Search field

values

Array of strings

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:notLeftLike:

Add a not like criteria that matches only left of the input.

- (void)searchField:(NSString *)searchField notLeftLike:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:notLike:

Add a not like criteria.

- (void)searchField:(NSString *)searchField notLike:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:notRightLike:

Add a not like criteria that matches only right of the input.

- (void)searchField:(NSString *)searchField notRightLike:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h

searchField:rightLike:

Add a like criteria that matches only right of the input.

- (void)searchField:(NSString *)searchField rightLike:(NSString *)string

Parameters

searchField

Search field

string

String

Availability

IBM Worklight V6.2.0

Declared In

JSONStoreQueryPart.h