FactualSortCriteria |
Encapsulates sort criteria, including field name and sort order
Superclass: NSObject
Declared In: FactualQuery.h
Factual currently supports a two level sort. Use this data structure in the Query object (see below) to specify the primary or secondary sort criteria.
initWithFieldName:sortOrder: |
-(id) initWithFieldName:(NSString*) fieldName sortOrder:(FactualSortOrder) order;
initializer used to create sort criteria
fieldName |
@property ( nonatomic, copy) NSString* fieldName;
the field, within the factual table, to sort by
sortOrder |
@property ( nonatomic) FactualSortOrder sortOrder;
the sort direction (ascending or descending)
Last Updated: Friday, January 28, 2011