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 << 0Swift
static var resource: TMEIndividualType { get } -
Request.
Declaration
Objective-C
TMEIndividualTypeRequest = 1 << 1Swift
static var request: TMEIndividualType { get } -
Both resource and request at the same time.
Declaration
Objective-C
TMEIndividualTypeAny = TMEIndividualTypeResource | TMEIndividualTypeRequestSwift
static var any: TMEIndividualType { get }
TMEIndividualType Enumeration Reference