SearchComparator
public enum SearchComparator: String
What Search Comparator Codes are supported in search
URL: http://hl7.org/fhir/search-comparator ValueSet: http://hl7.org/fhir/ValueSet/search-comparator
-
the value for the parameter in the resource is equal to the provided value
Declaration
Swift
case eq = "eq"
-
the value for the parameter in the resource is not equal to the provided value
Declaration
Swift
case ne = "ne"
-
the value for the parameter in the resource is greater than the provided value
Declaration
Swift
case gt = "gt"
-
the value for the parameter in the resource is less than the provided value
Declaration
Swift
case lt = "lt"
-
the value for the parameter in the resource is greater or equal to the provided value
Declaration
Swift
case ge = "ge"
-
the value for the parameter in the resource is less or equal to the provided value
Declaration
Swift
case le = "le"
-
the value for the parameter in the resource starts after the provided value
Declaration
Swift
case sa = "sa"
-
the value for the parameter in the resource ends before the provided value
Declaration
Swift
case eb = "eb"
-
the value for the parameter in the resource is approximately the same to the provided value.
Declaration
Swift
case ap = "ap"