public class ClinicalInfo extends Object
Java class for ClinicalInfo complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ClinicalInfo">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://extension-point-uri/15/03}Extension" minOccurs="0"/>
<element name="Type" type="{http://domain-model-uri/15/04}CodedValue"/>
<element name="RelatedMeasurement" type="{http://domain-model-uri/15/04}Measure" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="MeasuredValue" type="{http://www.w3.org/2001/XMLSchema}decimal" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected Extension |
extension |
protected BigDecimal |
measuredValue |
protected List<Measure> |
relatedMeasurements |
protected CodedValue |
type |
| Constructor and Description |
|---|
ClinicalInfo() |
| Modifier and Type | Method and Description |
|---|---|
Extension |
getExtension()
Gets the value of the extension property.
|
BigDecimal |
getMeasuredValue()
The measured value of a clinical observation if applicable
|
List<Measure> |
getRelatedMeasurements()
Related measurements for this clinical observation if applicable.Gets the value of the relatedMeasurements property.
|
CodedValue |
getType()
Gets the value of the type property.
|
void |
setExtension(Extension value)
Sets the value of the extension property.
|
void |
setMeasuredValue(BigDecimal value)
Sets the value of the measuredValue property.
|
void |
setRelatedMeasurements(List<Measure> value) |
void |
setType(CodedValue value)
Sets the value of the type property.
|
protected Extension extension
protected CodedValue type
protected BigDecimal measuredValue
public Extension getExtension()
Extensionpublic void setExtension(Extension value)
value - allowed object is
Extensionpublic CodedValue getType()
CodedValuepublic void setType(CodedValue value)
value - allowed object is
CodedValuepublic List<Measure> getRelatedMeasurements()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the relatedMeasurements property.
For example, to add a new item, do as follows:
getRelatedMeasurements().add(newItem);
Objects of the following type(s) are allowed in the list
Measure
public BigDecimal getMeasuredValue()
BigDecimalpublic void setMeasuredValue(BigDecimal value)
value - allowed object is
BigDecimalCopyright © 2016. All rights reserved.