Skip to main content

HS.FHIRServer.Storage.JsonAdvSQL.DataType.Number

serial class HS.FHIRServer.Storage.JsonAdvSQL.DataType.Number extends %Library.SerialObject

Serial object for storing number data types in Search Tables: https://www.hl7.org/fhir/search.html#number We represent the value from a decimal as an implicit range, integers there is no implicit range (Low = High)

Property Inventory

Method Inventory

Properties

property High as %Numeric (FORMAT = "AUTO", SCALE = 17);
The calculated high value of the implicit range for the number
Property methods: HighDisplayToLogical(), HighGet(), HighIsValid(), HighLogicalToDisplay(), HighNormalize(), HighSet()
property Low as %Numeric (FORMAT = "AUTO", SCALE = 17);
The calculated low value of the implicit range for the number
Property methods: LowDisplayToLogical(), LowGet(), LowIsValid(), LowLogicalToDisplay(), LowNormalize(), LowSet()
property Raw as %Numeric (FORMAT = "AUTO", SCALE = 17);
The raw value from the resource - Not used in JsonAdvSQL search, simply provided for possible customizations
Property methods: RawDisplayToLogical(), RawGet(), RawIsValid(), RawLogicalToDisplay(), RawNormalize(), RawSet()

Methods

classmethod IsBitmap(pProperty As %String) as %Boolean
Which properties should be indexed as bitmaps. Used by the Search Table Builder.

Inherited Members

Inherited Methods

FeedbackOpens in a new tab