package org.hl7.v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
*
* Fractional numbers. Typically used whenever quantities
* are measured, estimated, or computed from other real
* numbers. The typical representation is decimal, where
* the number of significant decimal digits is known as the
* precision. Real numbers are needed beyond integers
* whenever quantities of the real world are measured,
* estimated, or computed from other real numbers. The term
* "Real number" in this specification is used to mean
* that fractional values are covered without necessarily
* implying the full set of the mathematical real numbers.
*
*
* <p>Java class for REAL complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="REAL">
* <complexContent>
* <extension base="{urn:hl7-org:v3}QTY">
* <attribute name="value" type="{urn:hl7-org:v3}fractionalnumber" />
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "REAL")
@XmlSeeAlso({
IVXBREAL.class,
SXCMREAL.class
})
public class REAL
extends QTY
{
/**
*
*/
private static final long serialVersionUID = 1L;
@XmlAttribute
protected String value;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
}