use of org.hl7.fhir.r4b.model.Quantity in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeClaimSubDetailComponent.
protected void composeClaimSubDetailComponent(Complex parent, String parentType, String name, Claim.SubDetailComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "subDetail", name, element, index);
if (element.hasSequenceElement())
composePositiveInt(t, "Claim", "sequence", element.getSequenceElement(), -1);
if (element.hasType())
composeCoding(t, "Claim", "type", element.getType(), -1);
if (element.hasService())
composeCoding(t, "Claim", "service", element.getService(), -1);
for (int i = 0; i < element.getProgramCode().size(); i++) composeCoding(t, "Claim", "programCode", element.getProgramCode().get(i), i);
if (element.hasQuantity())
composeQuantity(t, "Claim", "quantity", element.getQuantity(), -1);
if (element.hasUnitPrice())
composeQuantity(t, "Claim", "unitPrice", element.getUnitPrice(), -1);
if (element.hasFactorElement())
composeDecimal(t, "Claim", "factor", element.getFactorElement(), -1);
if (element.hasPointsElement())
composeDecimal(t, "Claim", "points", element.getPointsElement(), -1);
if (element.hasNet())
composeQuantity(t, "Claim", "net", element.getNet(), -1);
for (int i = 0; i < element.getUdi().size(); i++) composeReference(t, "Claim", "udi", element.getUdi().get(i), i);
}
use of org.hl7.fhir.r4b.model.Quantity in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeProtocolProtocolStepActivityDetailComponent.
protected void composeProtocolProtocolStepActivityDetailComponent(Complex parent, String parentType, String name, Protocol.ProtocolStepActivityDetailComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "detail", name, element, index);
if (element.hasCategoryElement())
composeEnum(t, "Protocol", "category", element.getCategoryElement(), -1);
if (element.hasCode())
composeCodeableConcept(t, "Protocol", "code", element.getCode(), -1);
if (element.hasTiming())
composeType(t, "Protocol", "timing", element.getTiming(), -1);
if (element.hasLocation())
composeReference(t, "Protocol", "location", element.getLocation(), -1);
for (int i = 0; i < element.getPerformer().size(); i++) composeReference(t, "Protocol", "performer", element.getPerformer().get(i), i);
if (element.hasProduct())
composeReference(t, "Protocol", "product", element.getProduct(), -1);
if (element.hasQuantity())
composeQuantity(t, "Protocol", "quantity", element.getQuantity(), -1);
if (element.hasDescriptionElement())
composeString(t, "Protocol", "description", element.getDescriptionElement(), -1);
}
use of org.hl7.fhir.r4b.model.Quantity in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeContractTermValuedItemComponent.
protected void composeContractTermValuedItemComponent(Complex parent, String parentType, String name, Contract.TermValuedItemComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "valuedItem", name, element, index);
if (element.hasEntity())
composeType(t, "Contract", "entity", element.getEntity(), -1);
if (element.hasIdentifier())
composeIdentifier(t, "Contract", "identifier", element.getIdentifier(), -1);
if (element.hasEffectiveTimeElement())
composeDateTime(t, "Contract", "effectiveTime", element.getEffectiveTimeElement(), -1);
if (element.hasQuantity())
composeQuantity(t, "Contract", "quantity", element.getQuantity(), -1);
if (element.hasUnitPrice())
composeQuantity(t, "Contract", "unitPrice", element.getUnitPrice(), -1);
if (element.hasFactorElement())
composeDecimal(t, "Contract", "factor", element.getFactorElement(), -1);
if (element.hasPointsElement())
composeDecimal(t, "Contract", "points", element.getPointsElement(), -1);
if (element.hasNet())
composeQuantity(t, "Contract", "net", element.getNet(), -1);
}
use of org.hl7.fhir.r4b.model.Quantity in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeMedicationAdministrationMedicationAdministrationDosageComponent.
protected void composeMedicationAdministrationMedicationAdministrationDosageComponent(Complex parent, String parentType, String name, MedicationAdministration.MedicationAdministrationDosageComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "dosage", name, element, index);
if (element.hasTextElement())
composeString(t, "MedicationAdministration", "text", element.getTextElement(), -1);
if (element.hasSite())
composeType(t, "MedicationAdministration", "site", element.getSite(), -1);
if (element.hasRoute())
composeCodeableConcept(t, "MedicationAdministration", "route", element.getRoute(), -1);
if (element.hasMethod())
composeCodeableConcept(t, "MedicationAdministration", "method", element.getMethod(), -1);
if (element.hasQuantity())
composeQuantity(t, "MedicationAdministration", "quantity", element.getQuantity(), -1);
if (element.hasRate())
composeType(t, "MedicationAdministration", "rate", element.getRate(), -1);
}
use of org.hl7.fhir.r4b.model.Quantity in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeGroup.
protected void composeGroup(Complex parent, String parentType, String name, Group element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeDomainResource(t, "Group", name, element, index);
for (int i = 0; i < element.getIdentifier().size(); i++) composeIdentifier(t, "Group", "identifier", element.getIdentifier().get(i), i);
if (element.hasTypeElement())
composeEnum(t, "Group", "type", element.getTypeElement(), -1);
if (element.hasActualElement())
composeBoolean(t, "Group", "actual", element.getActualElement(), -1);
if (element.hasActiveElement())
composeBoolean(t, "Group", "active", element.getActiveElement(), -1);
if (element.hasCode())
composeCodeableConcept(t, "Group", "code", element.getCode(), -1);
if (element.hasNameElement())
composeString(t, "Group", "name", element.getNameElement(), -1);
if (element.hasQuantityElement())
composeUnsignedInt(t, "Group", "quantity", element.getQuantityElement(), -1);
for (int i = 0; i < element.getCharacteristic().size(); i++) composeGroupGroupCharacteristicComponent(t, "Group", "characteristic", element.getCharacteristic().get(i), i);
for (int i = 0; i < element.getMember().size(); i++) composeGroupGroupMemberComponent(t, "Group", "member", element.getMember().get(i), i);
}
Aggregations