package datatypes
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- trait CustomCoder extends AnyRef
-
trait
DataTypeMappings extends AnyRef
Interface for mapping FHIR datatypes to Spark datatypes.
-
case class
DecimalCustomCoder(elementName: String) extends CustomCoder with Product with Serializable
Custom coder for DecimalType.
Custom coder for DecimalType. Represents decimal on two dataset columns: the actual DecimalType value and an additional IntegerType column with
_scale
suffix storing the scale of the original FHIR decimal value.- elementName
the name of the element that this will be used to encode
-
case class
IdCustomCoder(elementName: String) extends CustomCoder with Product with Serializable
Custom coder for IdType.
Custom coder for IdType. Represents IdType on two dataset columns: 'id' column hold the abbreviated unversioned id. 'id_versioned' column holds the full id with version, type etc.
- elementName
the name of the element.
-
class
R4DataTypeMappings extends DataTypeMappings
Data type mappings for FHIR STU3.
Value Members
- object DecimalCustomCoder extends Serializable
-
object
R4DataTypeMappings
Companion object for R4DataTypeMappings