VaultMobileSDK
18R3
iOS framework for Vault API
|
Instances of this class are used to constuct a VEVVaultLocalQuery. Each instance represents a field/value search clause in the search expression represented by the VEVVaultLocalQuery that contains it. More...
Inherits NSObject.
Class Methods | |
(instancetype) | + criteriaWithField:equalTo: |
Constructs an 'equal to' criteria to be used in a VEVVaultJSONCache query. It matches cached responses where the value for the field is equal to value . More... | |
(instancetype) | + criteriaWithField:like: |
Constructs a 'like' criteria to be used in a VEVVaultJSONCache query. It matches cached responses where the string value for the field contains the substring value . More... | |
Properties | |
NSString * | field |
The name of the field to search on. | |
id | value |
The value to query on. | |
Instances of this class are used to constuct a VEVVaultLocalQuery. Each instance represents a field/value search clause in the search expression represented by the VEVVaultLocalQuery that contains it.
+ (instancetype) criteriaWithField: | (NSString *) | field | |
equalTo: | (id) | value | |
Constructs an 'equal to' criteria to be used in a VEVVaultJSONCache query. It matches cached responses where the value for the field is equal to value
.
field | The cache field name to compare to the value. |
value | The value to compare to the value in the cache field. |
+ (instancetype) criteriaWithField: | (NSString *) | field | |
like: | (id) | value | |
Constructs a 'like' criteria to be used in a VEVVaultJSONCache query. It matches cached responses where the string value for the field contains the substring value
.
field | The cache field to compare to the value. |
value | The value to compare to the value in the cache field. |