QuantityComparator

public enum QuantityComparator: String

How the Quantity should be understood and represented.

URL: http://hl7.org/fhir/quantity-comparator ValueSet: http://hl7.org/fhir/ValueSet/quantity-comparator

  • lt

    The actual value is less than the given value.

    Declaration

    Swift

    case lt = "<"
  • lte

    The actual value is less than or equal to the given value.

    Declaration

    Swift

    case lte = "<="
  • gte

    The actual value is greater than or equal to the given value.

    Declaration

    Swift

    case gte = ">="
  • gt

    The actual value is greater than the given value.

    Declaration

    Swift

    case gt = ">"