Package com.ibm.fhir.model.type
Class SubstanceAmount
- java.lang.Object
-
- com.ibm.fhir.model.visitor.AbstractVisitable
-
- com.ibm.fhir.model.type.Element
-
- com.ibm.fhir.model.type.BackboneElement
-
- com.ibm.fhir.model.type.SubstanceAmount
-
- All Implemented Interfaces:
Visitable
@Generated("com.ibm.fhir.tools.CodeGenerator") public class SubstanceAmount extends BackboneElement
Chemical substances are a single substance type whose primary defining element is the molecular structure. Chemical substances shall be defined on the basis of their complete covalent molecular structure; the presence of a salt (counter-ion) and/or solvates (water, alcohols) is also captured. Purity, grade, physical form or particle size are not taken into account in the definition of a chemical substance or in the assignment of a Substance ID.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSubstanceAmount.Builderstatic classSubstanceAmount.ReferenceRangeReference range of possible or expected values.
-
Field Summary
-
Fields inherited from class com.ibm.fhir.model.type.BackboneElement
modifierExtension
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(String elementName, int elementIndex, Visitor visitor)Accept a Visitor and invoke the appropriate visit methods.static SubstanceAmount.Builderbuilder()booleanequals(Object obj)ElementgetAmount()Used to capture quantitative values for a variety of elements.StringgetAmountText()A textual comment on a numeric value.CodeableConceptgetAmountType()Most elements that require a quantitative value will also have a field called amount type.SubstanceAmount.ReferenceRangegetReferenceRange()Reference range of possible or expected values.booleanhasChildren()inthashCode()SubstanceAmount.BuildertoBuilder()Create a new Builder from the contents of this Element-
Methods inherited from class com.ibm.fhir.model.type.BackboneElement
getModifierExtension
-
-
-
-
Method Detail
-
getAmount
public Element getAmount()
Used to capture quantitative values for a variety of elements. If only limits are given, the arithmetic mean would be the average. If only a single definite value for a given element is given, it would be captured in this field.- Returns:
- An immutable object of type
Elementthat may be null.
-
getAmountType
public CodeableConcept getAmountType()
Most elements that require a quantitative value will also have a field called amount type. Amount type should always be specified because the actual value of the amount is often dependent on it. EXAMPLE: In capturing the actual relative amounts of substances or molecular fragments it is essential to indicate whether the amount refers to a mole ratio or weight ratio. For any given element an effort should be made to use same the amount type for all related definitional elements.- Returns:
- An immutable object of type
CodeableConceptthat may be null.
-
getAmountText
public String getAmountText()
A textual comment on a numeric value.- Returns:
- An immutable object of type
Stringthat may be null.
-
getReferenceRange
public SubstanceAmount.ReferenceRange getReferenceRange()
Reference range of possible or expected values.- Returns:
- An immutable object of type
SubstanceAmount.ReferenceRangethat may be null.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildrenin classBackboneElement
-
accept
public void accept(String elementName, int elementIndex, Visitor visitor)
Description copied from interface:VisitableAccept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); }- Specified by:
acceptin interfaceVisitable- Specified by:
acceptin classAbstractVisitable- Parameters:
elementName- the name of the element in the context of this visitelementIndex- the index of the element in a list or -1 if it is not contained within a Listvisitor- the visitor to use
-
toBuilder
public SubstanceAmount.Builder toBuilder()
Description copied from class:ElementCreate a new Builder from the contents of this Element- Specified by:
toBuilderin classBackboneElement
-
builder
public static SubstanceAmount.Builder builder()
-
-