You are here

SkyVaultKeywordSearchOptions

SkyVaultKeywordSearchOptions

This section describes the SkyVaultKeywordSearchOptions class.

The SkyVaultKeywordSearchOptions class encapsulates keyword search options as used in SkyVault searches.

Class declaration

@interface SkyVaultKeywordSearchOptions : NSObject <NSCoding>

Properties

Property Description
@property (nonatomic, assign) BOOL exactMatch Determines whether the keyword search should only search for exact matches. Default is false.
@property (nonatomic, assign) BOOL includeContent Determines whether the keyword search should search in the content as well as the name, title and description properties. Default is true.
@property (nonatomic, strong) SkyVaultFolder *folder Returns the folder the search should be restricted to, if null is returned the whole repository is searched. Default is null.
@property (nonatomic, assign) BOOL includeDescendants Determines whether the search should also search in child folders, only applies if the search is restricted to a specific folder. Default is true.
@property (nonatomic, assign) BOOL includeAll Determines whether the keyword search should search both content and metadata (implies includeContent). Default is false.
@property (nonatomic, strong) NSString *typeName The type name to be used in the keyword search, "cmis:document" by default.
Note: With version 1.4, properties became read-write.