blob: bdd65bf1b0c37567f91a599e71e1b9e7a3592bb4 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import java.math.BigDecimal;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Decimal</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A rational number with implicit precision
* Do not use a IEEE type floating point type, instead use something that works like a true decimal, with inbuilt precision (e.g. Java BigInteger)
* If the element is present, it must have either a @value, an @id, or extensions
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.Decimal#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getDecimal()
* @model extendedMetaData="name='decimal' kind='elementOnly'"
* @generated
*/
public interface Decimal extends Element {
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(BigDecimal)
* @see org.hl7.fhir.FhirPackage#getDecimal_Value()
* @model dataType="org.hl7.fhir.DecimalPrimitive"
* extendedMetaData="kind='attribute' name='value'"
* @generated
*/
BigDecimal getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.Decimal#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(BigDecimal value);
} // Decimal