Package com.ibm.fhir.model.resource
Class MedicinalProductPackaged.PackageItem
- 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.resource.MedicinalProductPackaged.PackageItem
-
- All Implemented Interfaces:
Visitable
- Enclosing class:
- MedicinalProductPackaged
public static class MedicinalProductPackaged.PackageItem extends BackboneElement
A packaging item, as a contained for medicine, possibly with other packaging items within.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MedicinalProductPackaged.PackageItem.Builder
-
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 void
accept(String elementName, int elementIndex, Visitor visitor)
Accept a Visitor and invoke the appropriate visit methods.static MedicinalProductPackaged.PackageItem.Builder
builder()
boolean
equals(Object obj)
List<CodeableConcept>
getAlternateMaterial()
A possible alternate material for the packaging.List<Reference>
getDevice()
A device accompanying a medicinal product.List<Identifier>
getIdentifier()
Including possibly Data Carrier Identifier.List<Reference>
getManufacturedItem()
The manufactured item as contained in the packaged medicinal product.List<Reference>
getManufacturer()
Manufacturer of this Package Item.List<CodeableConcept>
getMaterial()
Material type of the package item.List<CodeableConcept>
getOtherCharacteristics()
Other codeable characteristics.List<MedicinalProductPackaged.PackageItem>
getPackageItem()
Allows containers within containers.ProdCharacteristic
getPhysicalCharacteristics()
Dimensions, color etc.Quantity
getQuantity()
The quantity of this package in the medicinal product, at the current level of packaging.List<ProductShelfLife>
getShelfLifeStorage()
Shelf Life and storage information.CodeableConcept
getType()
The physical type of the container of the medicine.boolean
hasChildren()
int
hashCode()
MedicinalProductPackaged.PackageItem.Builder
toBuilder()
Create a new Builder from the contents of this Element-
Methods inherited from class com.ibm.fhir.model.type.BackboneElement
getModifierExtension
-
-
-
-
Method Detail
-
getIdentifier
public List<Identifier> getIdentifier()
Including possibly Data Carrier Identifier.- Returns:
- An unmodifiable list containing immutable objects of type
Identifier
that may be empty.
-
getType
public CodeableConcept getType()
The physical type of the container of the medicine.- Returns:
- An immutable object of type
CodeableConcept
that is non-null.
-
getQuantity
public Quantity getQuantity()
The quantity of this package in the medicinal product, at the current level of packaging. The outermost is always 1.- Returns:
- An immutable object of type
Quantity
that is non-null.
-
getMaterial
public List<CodeableConcept> getMaterial()
Material type of the package item.- Returns:
- An unmodifiable list containing immutable objects of type
CodeableConcept
that may be empty.
-
getAlternateMaterial
public List<CodeableConcept> getAlternateMaterial()
A possible alternate material for the packaging.- Returns:
- An unmodifiable list containing immutable objects of type
CodeableConcept
that may be empty.
-
getDevice
public List<Reference> getDevice()
A device accompanying a medicinal product.- Returns:
- An unmodifiable list containing immutable objects of type
Reference
that may be empty.
-
getManufacturedItem
public List<Reference> getManufacturedItem()
The manufactured item as contained in the packaged medicinal product.- Returns:
- An unmodifiable list containing immutable objects of type
Reference
that may be empty.
-
getPackageItem
public List<MedicinalProductPackaged.PackageItem> getPackageItem()
Allows containers within containers.- Returns:
- An unmodifiable list containing immutable objects of type
MedicinalProductPackaged.PackageItem
that may be empty.
-
getPhysicalCharacteristics
public ProdCharacteristic getPhysicalCharacteristics()
Dimensions, color etc.- Returns:
- An immutable object of type
ProdCharacteristic
that may be null.
-
getOtherCharacteristics
public List<CodeableConcept> getOtherCharacteristics()
Other codeable characteristics.- Returns:
- An unmodifiable list containing immutable objects of type
CodeableConcept
that may be empty.
-
getShelfLifeStorage
public List<ProductShelfLife> getShelfLifeStorage()
Shelf Life and storage information.- Returns:
- An unmodifiable list containing immutable objects of type
ProductShelfLife
that may be empty.
-
getManufacturer
public List<Reference> getManufacturer()
Manufacturer of this Package Item.- Returns:
- An unmodifiable list containing immutable objects of type
Reference
that may be empty.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildren
in classBackboneElement
-
accept
public void accept(String elementName, int elementIndex, Visitor visitor)
Description copied from interface:Visitable
Accept 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:
accept
in interfaceVisitable
- Specified by:
accept
in 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 MedicinalProductPackaged.PackageItem.Builder toBuilder()
Description copied from class:Element
Create a new Builder from the contents of this Element- Specified by:
toBuilder
in classBackboneElement
-
builder
public static MedicinalProductPackaged.PackageItem.Builder builder()
-
-