Class RatioDt
- java.lang.Object
-
- ca.uhn.fhir.model.api.BaseElement
-
- ca.uhn.fhir.model.api.BaseIdentifiableElement
-
- ca.uhn.fhir.model.dstu2.composite.RatioDt
-
- All Implemented Interfaces:
ca.uhn.fhir.model.api.ICompositeDatatype,ca.uhn.fhir.model.api.ICompositeElement,ca.uhn.fhir.model.api.IDatatype,ca.uhn.fhir.model.api.IElement,ca.uhn.fhir.model.api.IIdentifiableElement,ca.uhn.fhir.model.api.ISupportsUndeclaredExtensions,Serializable,org.hl7.fhir.instance.model.api.IBase,org.hl7.fhir.instance.model.api.IBaseDatatype,org.hl7.fhir.instance.model.api.ICompositeType
public class RatioDt extends ca.uhn.fhir.model.api.BaseIdentifiableElement implements ca.uhn.fhir.model.api.ICompositeDatatype
HAPI/FHIR RatioDt Datatype ()Definition: A relationship of two Quantity values - expressed as a numerator and a denominator.
Requirements: Need to able to capture ratios for some measurements (titers) and some rates (costs)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RatioDt()Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends ca.uhn.fhir.model.api.IElement>
List<T>getAllPopulatedChildElementsOfType(Class<T> theType)QuantityDtgetDenominator()Gets the value(s) for denominator ().QuantityDtgetNumerator()Gets the value(s) for numerator ().booleanisEmpty()RatioDtsetDenominator(QuantityDt theValue)Sets the value(s) for denominator ()RatioDtsetNumerator(QuantityDt theValue)Sets the value(s) for numerator ()-
Methods inherited from class ca.uhn.fhir.model.api.BaseIdentifiableElement
getElementSpecificId, getId, setElementSpecificId, setId, setId
-
Methods inherited from class ca.uhn.fhir.model.api.BaseElement
addUndeclaredExtension, addUndeclaredExtension, addUndeclaredExtension, getAllUndeclaredExtensions, getFormatCommentsPost, getFormatCommentsPre, getUndeclaredExtensions, getUndeclaredExtensionsByUrl, getUndeclaredModifierExtensions, getUserData, hasFormatComment, isBaseEmpty, setUserData
-
-
-
-
Constructor Detail
-
RatioDt
public RatioDt()
Constructor
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceorg.hl7.fhir.instance.model.api.IBase
-
getAllPopulatedChildElementsOfType
public <T extends ca.uhn.fhir.model.api.IElement> List<T> getAllPopulatedChildElementsOfType(Class<T> theType)
- Specified by:
getAllPopulatedChildElementsOfTypein interfaceca.uhn.fhir.model.api.ICompositeElement
-
getNumerator
public QuantityDt getNumerator()
Gets the value(s) for numerator (). creating it if it does not exist. Will not returnnull.Definition: The value of the numerator
-
setNumerator
public RatioDt setNumerator(QuantityDt theValue)
Sets the value(s) for numerator ()Definition: The value of the numerator
-
getDenominator
public QuantityDt getDenominator()
Gets the value(s) for denominator (). creating it if it does not exist. Will not returnnull.Definition: The value of the denominator
-
setDenominator
public RatioDt setDenominator(QuantityDt theValue)
Sets the value(s) for denominator ()Definition: The value of the denominator
-
-