Class MedicationRequest.DispenseRequest
- java.lang.Object
-
- org.linuxforhealth.fhir.model.visitor.AbstractVisitable
-
- org.linuxforhealth.fhir.model.type.Element
-
- org.linuxforhealth.fhir.model.type.BackboneElement
-
- org.linuxforhealth.fhir.model.resource.MedicationRequest.DispenseRequest
-
- All Implemented Interfaces:
Visitable
- Enclosing class:
- MedicationRequest
public static class MedicationRequest.DispenseRequest extends BackboneElement
Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMedicationRequest.DispenseRequest.Builderstatic classMedicationRequest.DispenseRequest.InitialFillIndicates the quantity or duration for the first dispense of the medication.
-
Field Summary
-
Fields inherited from class org.linuxforhealth.fhir.model.type.BackboneElement
modifierExtension
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(java.lang.String elementName, int elementIndex, Visitor visitor)Accept a Visitor and invoke the appropriate visit methods.static MedicationRequest.DispenseRequest.Builderbuilder()booleanequals(java.lang.Object obj)DurationgetDispenseInterval()The minimum period of time that must occur between dispenses of the medication.DurationgetExpectedSupplyDuration()Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last.MedicationRequest.DispenseRequest.InitialFillgetInitialFill()Indicates the quantity or duration for the first dispense of the medication.UnsignedIntgetNumberOfRepeatsAllowed()An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication.ReferencegetPerformer()Indicates the intended dispensing Organization specified by the prescriber.SimpleQuantitygetQuantity()The amount that is to be dispensed for one fill.PeriodgetValidityPeriod()This indicates the validity period of a prescription (stale dating the Prescription).booleanhasChildren()inthashCode()MedicationRequest.DispenseRequest.BuildertoBuilder()Create a new Builder from the contents of this Element-
Methods inherited from class org.linuxforhealth.fhir.model.type.BackboneElement
getModifierExtension
-
Methods inherited from class org.linuxforhealth.fhir.model.type.Element
as, getExtension, getId, hasValue, is
-
-
-
-
Method Detail
-
getInitialFill
public MedicationRequest.DispenseRequest.InitialFill getInitialFill()
Indicates the quantity or duration for the first dispense of the medication.- Returns:
- An immutable object of type
MedicationRequest.DispenseRequest.InitialFillthat may be null.
-
getDispenseInterval
public Duration getDispenseInterval()
The minimum period of time that must occur between dispenses of the medication.- Returns:
- An immutable object of type
Durationthat may be null.
-
getValidityPeriod
public Period getValidityPeriod()
This indicates the validity period of a prescription (stale dating the Prescription).- Returns:
- An immutable object of type
Periodthat may be null.
-
getNumberOfRepeatsAllowed
public UnsignedInt getNumberOfRepeatsAllowed()
An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus "3 repeats", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense.- Returns:
- An immutable object of type
UnsignedIntthat may be null.
-
getQuantity
public SimpleQuantity getQuantity()
The amount that is to be dispensed for one fill.- Returns:
- An immutable object of type
SimpleQuantitythat may be null.
-
getExpectedSupplyDuration
public Duration getExpectedSupplyDuration()
Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last.- Returns:
- An immutable object of type
Durationthat may be null.
-
getPerformer
public Reference getPerformer()
Indicates the intended dispensing Organization specified by the prescriber.- Returns:
- An immutable object of type
Referencethat may be null.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildrenin classBackboneElement
-
accept
public void accept(java.lang.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
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toBuilder
public MedicationRequest.DispenseRequest.Builder toBuilder()
Description copied from class:ElementCreate a new Builder from the contents of this Element- Specified by:
toBuilderin classBackboneElement
-
builder
public static MedicationRequest.DispenseRequest.Builder builder()
-
-