AssertionOperatorType
public enum AssertionOperatorType: String
The type of operator to use for assertion.
URL: http://hl7.org/fhir/assert-operator-codes ValueSet: http://hl7.org/fhir/ValueSet/assert-operator-codes
-
Default value. Equals comparison.
Declaration
Swift
case equals = "equals"
-
Not equals comparison.
Declaration
Swift
case notEquals = "notEquals"
-
Compare value within a known set of values.
Declaration
Swift
case `in` = "in"
-
Compare value not within a known set of values.
Declaration
Swift
case notIn = "notIn"
-
Compare value to be greater than a known value.
Declaration
Swift
case greaterThan = "greaterThan"
-
Compare value to be less than a known value.
Declaration
Swift
case lessThan = "lessThan"
-
Compare value is empty.
Declaration
Swift
case empty = "empty"
-
Compare value is not empty.
Declaration
Swift
case notEmpty = "notEmpty"
-
Compare value string contains a known value.
Declaration
Swift
case contains = "contains"
-
Compare value string does not contain a known value.
Declaration
Swift
case notContains = "notContains"
-
Evaluate the fluentpath expression as a boolean condition.
Declaration
Swift
case eval = "eval"