TMEIndividualType
enum TMEIndividualType {}
Represents the type of an individual w.r.t. semantic matchmaking tasks. In this context, an individual can be either a resource, a request or both.
-
Neither a resource nor a request.
Declaration
Objective-C
TMEIndividualTypeNone = 0
-
Resource.
Declaration
Objective-C
TMEIndividualTypeResource = 1 << 0
Swift
static var resource: TMEIndividualType { get }
-
Request.
Declaration
Objective-C
TMEIndividualTypeRequest = 1 << 1
Swift
static var request: TMEIndividualType { get }
-
Both resource and request at the same time.
Declaration
Objective-C
TMEIndividualTypeAny = TMEIndividualTypeResource | TMEIndividualTypeRequest
Swift
static var any: TMEIndividualType { get }