Class RangeDt
- java.lang.Object
-
- ca.uhn.fhir.model.api.BaseElement
-
- ca.uhn.fhir.model.api.BaseIdentifiableElement
-
- ca.uhn.fhir.model.dstu2.composite.RangeDt
-
- 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 RangeDt extends ca.uhn.fhir.model.api.BaseIdentifiableElement implements ca.uhn.fhir.model.api.ICompositeDatatype
HAPI/FHIR RangeDt Datatype ()Definition: A set of ordered Quantities defined by a low and high limit.
Requirements: Need to be able to specify ranges of values
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RangeDt()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)SimpleQuantityDtgetHigh()Gets the value(s) for high ().SimpleQuantityDtgetLow()Gets the value(s) for low ().booleanisEmpty()RangeDtsetHigh(SimpleQuantityDt theValue)Sets the value(s) for high ()RangeDtsetLow(SimpleQuantityDt theValue)Sets the value(s) for low ()-
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
-
RangeDt
public RangeDt()
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
-
getLow
public SimpleQuantityDt getLow()
Gets the value(s) for low (). creating it if it does not exist. Will not returnnull.Definition: The low limit. The boundary is inclusive.
-
setLow
public RangeDt setLow(SimpleQuantityDt theValue)
Sets the value(s) for low ()Definition: The low limit. The boundary is inclusive.
-
getHigh
public SimpleQuantityDt getHigh()
Gets the value(s) for high (). creating it if it does not exist. Will not returnnull.Definition: The high limit. The boundary is inclusive.
-
setHigh
public RangeDt setHigh(SimpleQuantityDt theValue)
Sets the value(s) for high ()Definition: The high limit. The boundary is inclusive.
-
-