All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.fhir.model.resource.Patient Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019, 2021
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.model.resource;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

import javax.annotation.Generated;

import com.ibm.fhir.model.annotation.Binding;
import com.ibm.fhir.model.annotation.Choice;
import com.ibm.fhir.model.annotation.Constraint;
import com.ibm.fhir.model.annotation.Maturity;
import com.ibm.fhir.model.annotation.ReferenceTarget;
import com.ibm.fhir.model.annotation.Required;
import com.ibm.fhir.model.annotation.Summary;
import com.ibm.fhir.model.type.Address;
import com.ibm.fhir.model.type.Attachment;
import com.ibm.fhir.model.type.BackboneElement;
import com.ibm.fhir.model.type.Boolean;
import com.ibm.fhir.model.type.Code;
import com.ibm.fhir.model.type.CodeableConcept;
import com.ibm.fhir.model.type.ContactPoint;
import com.ibm.fhir.model.type.Date;
import com.ibm.fhir.model.type.DateTime;
import com.ibm.fhir.model.type.Element;
import com.ibm.fhir.model.type.Extension;
import com.ibm.fhir.model.type.HumanName;
import com.ibm.fhir.model.type.Identifier;
import com.ibm.fhir.model.type.Integer;
import com.ibm.fhir.model.type.Meta;
import com.ibm.fhir.model.type.Narrative;
import com.ibm.fhir.model.type.Period;
import com.ibm.fhir.model.type.Reference;
import com.ibm.fhir.model.type.Uri;
import com.ibm.fhir.model.type.code.AdministrativeGender;
import com.ibm.fhir.model.type.code.BindingStrength;
import com.ibm.fhir.model.type.code.LinkType;
import com.ibm.fhir.model.type.code.StandardsStatus;
import com.ibm.fhir.model.util.ValidationSupport;
import com.ibm.fhir.model.visitor.Visitor;

/**
 * Demographics and other administrative information about an individual or animal receiving care or other health-related 
 * services.
 * 
 * 

Maturity level: FMM5 (Normative) */ @Maturity( level = 5, status = StandardsStatus.Value.NORMATIVE ) @Constraint( id = "pat-1", level = "Rule", location = "Patient.contact", description = "SHALL at least contain a contact's details or a reference to an organization", expression = "name.exists() or telecom.exists() or address.exists() or organization.exists()" ) @Constraint( id = "patient-2", level = "Warning", location = "(base)", description = "SHALL, if possible, contain a code from value set http://hl7.org/fhir/ValueSet/marital-status", expression = "maritalStatus.exists() implies (maritalStatus.memberOf('http://hl7.org/fhir/ValueSet/marital-status', 'extensible'))", generated = true ) @Constraint( id = "patient-3", level = "Warning", location = "contact.relationship", description = "SHALL, if possible, contain a code from value set http://hl7.org/fhir/ValueSet/patient-contactrelationship", expression = "$this.memberOf('http://hl7.org/fhir/ValueSet/patient-contactrelationship', 'extensible')", generated = true ) @Constraint( id = "patient-4", level = "Warning", location = "communication.language", description = "SHOULD contain a code from value set http://hl7.org/fhir/ValueSet/languages", expression = "$this.memberOf('http://hl7.org/fhir/ValueSet/languages', 'preferred')", generated = true ) @Generated("com.ibm.fhir.tools.CodeGenerator") public class Patient extends DomainResource { @Summary private final List identifier; @Summary private final Boolean active; @Summary private final List name; @Summary private final List telecom; @Summary @Binding( bindingName = "AdministrativeGender", strength = BindingStrength.Value.REQUIRED, description = "The gender of a person used for administrative purposes.", valueSet = "http://hl7.org/fhir/ValueSet/administrative-gender|4.0.1" ) private final AdministrativeGender gender; @Summary private final Date birthDate; @Summary @Choice({ Boolean.class, DateTime.class }) private final Element deceased; @Summary private final List

address; @Binding( bindingName = "MaritalStatus", strength = BindingStrength.Value.EXTENSIBLE, description = "The domestic partnership status of a person.", valueSet = "http://hl7.org/fhir/ValueSet/marital-status" ) private final CodeableConcept maritalStatus; @Choice({ Boolean.class, Integer.class }) private final Element multipleBirth; private final List photo; private final List contact; private final List communication; @ReferenceTarget({ "Organization", "Practitioner", "PractitionerRole" }) private final List generalPractitioner; @Summary @ReferenceTarget({ "Organization" }) private final Reference managingOrganization; @Summary private final List link; private Patient(Builder builder) { super(builder); identifier = Collections.unmodifiableList(builder.identifier); active = builder.active; name = Collections.unmodifiableList(builder.name); telecom = Collections.unmodifiableList(builder.telecom); gender = builder.gender; birthDate = builder.birthDate; deceased = builder.deceased; address = Collections.unmodifiableList(builder.address); maritalStatus = builder.maritalStatus; multipleBirth = builder.multipleBirth; photo = Collections.unmodifiableList(builder.photo); contact = Collections.unmodifiableList(builder.contact); communication = Collections.unmodifiableList(builder.communication); generalPractitioner = Collections.unmodifiableList(builder.generalPractitioner); managingOrganization = builder.managingOrganization; link = Collections.unmodifiableList(builder.link); } /** * An identifier for this patient. * * @return * An unmodifiable list containing immutable objects of type {@link Identifier} that may be empty. */ public List getIdentifier() { return identifier; } /** * Whether this patient record is in active use. * Many systems use this property to mark as non-current patients, such as those that have not been seen for a period of * time based on an organization's business rules. * *

It is often used to filter patient lists to exclude inactive patients * *

Deceased patients may also be marked as inactive for the same reasons, but may be active for some time after death. * * @return * An immutable object of type {@link Boolean} that may be null. */ public Boolean getActive() { return active; } /** * A name associated with the individual. * * @return * An unmodifiable list containing immutable objects of type {@link HumanName} that may be empty. */ public List getName() { return name; } /** * A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted. * * @return * An unmodifiable list containing immutable objects of type {@link ContactPoint} that may be empty. */ public List getTelecom() { return telecom; } /** * Administrative Gender - the gender that the patient is considered to have for administration and record keeping * purposes. * * @return * An immutable object of type {@link AdministrativeGender} that may be null. */ public AdministrativeGender getGender() { return gender; } /** * The date of birth for the individual. * * @return * An immutable object of type {@link Date} that may be null. */ public Date getBirthDate() { return birthDate; } /** * Indicates if the individual is deceased or not. * * @return * An immutable object of type {@link Element} that may be null. */ public Element getDeceased() { return deceased; } /** * An address for the individual. * * @return * An unmodifiable list containing immutable objects of type {@link Address} that may be empty. */ public List

getAddress() { return address; } /** * This field contains a patient's most recent marital (civil) status. * * @return * An immutable object of type {@link CodeableConcept} that may be null. */ public CodeableConcept getMaritalStatus() { return maritalStatus; } /** * Indicates whether the patient is part of a multiple (boolean) or indicates the actual birth order (integer). * * @return * An immutable object of type {@link Element} that may be null. */ public Element getMultipleBirth() { return multipleBirth; } /** * Image of the patient. * * @return * An unmodifiable list containing immutable objects of type {@link Attachment} that may be empty. */ public List getPhoto() { return photo; } /** * A contact party (e.g. guardian, partner, friend) for the patient. * * @return * An unmodifiable list containing immutable objects of type {@link Contact} that may be empty. */ public List getContact() { return contact; } /** * A language which may be used to communicate with the patient about his or her health. * * @return * An unmodifiable list containing immutable objects of type {@link Communication} that may be empty. */ public List getCommunication() { return communication; } /** * Patient's nominated care provider. * * @return * An unmodifiable list containing immutable objects of type {@link Reference} that may be empty. */ public List getGeneralPractitioner() { return generalPractitioner; } /** * Organization that is the custodian of the patient record. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getManagingOrganization() { return managingOrganization; } /** * Link to another patient resource that concerns the same actual patient. * * @return * An unmodifiable list containing immutable objects of type {@link Link} that may be empty. */ public List getLink() { return link; } @Override public boolean hasChildren() { return super.hasChildren() || !identifier.isEmpty() || (active != null) || !name.isEmpty() || !telecom.isEmpty() || (gender != null) || (birthDate != null) || (deceased != null) || !address.isEmpty() || (maritalStatus != null) || (multipleBirth != null) || !photo.isEmpty() || !contact.isEmpty() || !communication.isEmpty() || !generalPractitioner.isEmpty() || (managingOrganization != null) || !link.isEmpty(); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(meta, "meta", visitor); accept(implicitRules, "implicitRules", visitor); accept(language, "language", visitor); accept(text, "text", visitor); accept(contained, "contained", visitor, Resource.class); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(identifier, "identifier", visitor, Identifier.class); accept(active, "active", visitor); accept(name, "name", visitor, HumanName.class); accept(telecom, "telecom", visitor, ContactPoint.class); accept(gender, "gender", visitor); accept(birthDate, "birthDate", visitor); accept(deceased, "deceased", visitor); accept(address, "address", visitor, Address.class); accept(maritalStatus, "maritalStatus", visitor); accept(multipleBirth, "multipleBirth", visitor); accept(photo, "photo", visitor, Attachment.class); accept(contact, "contact", visitor, Contact.class); accept(communication, "communication", visitor, Communication.class); accept(generalPractitioner, "generalPractitioner", visitor, Reference.class); accept(managingOrganization, "managingOrganization", visitor); accept(link, "link", visitor, Link.class); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Patient other = (Patient) obj; return Objects.equals(id, other.id) && Objects.equals(meta, other.meta) && Objects.equals(implicitRules, other.implicitRules) && Objects.equals(language, other.language) && Objects.equals(text, other.text) && Objects.equals(contained, other.contained) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(identifier, other.identifier) && Objects.equals(active, other.active) && Objects.equals(name, other.name) && Objects.equals(telecom, other.telecom) && Objects.equals(gender, other.gender) && Objects.equals(birthDate, other.birthDate) && Objects.equals(deceased, other.deceased) && Objects.equals(address, other.address) && Objects.equals(maritalStatus, other.maritalStatus) && Objects.equals(multipleBirth, other.multipleBirth) && Objects.equals(photo, other.photo) && Objects.equals(contact, other.contact) && Objects.equals(communication, other.communication) && Objects.equals(generalPractitioner, other.generalPractitioner) && Objects.equals(managingOrganization, other.managingOrganization) && Objects.equals(link, other.link); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, meta, implicitRules, language, text, contained, extension, modifierExtension, identifier, active, name, telecom, gender, birthDate, deceased, address, maritalStatus, multipleBirth, photo, contact, communication, generalPractitioner, managingOrganization, link); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends DomainResource.Builder { private List identifier = new ArrayList<>(); private Boolean active; private List name = new ArrayList<>(); private List telecom = new ArrayList<>(); private AdministrativeGender gender; private Date birthDate; private Element deceased; private List
address = new ArrayList<>(); private CodeableConcept maritalStatus; private Element multipleBirth; private List photo = new ArrayList<>(); private List contact = new ArrayList<>(); private List communication = new ArrayList<>(); private List generalPractitioner = new ArrayList<>(); private Reference managingOrganization; private List link = new ArrayList<>(); private Builder() { super(); } /** * The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes. * * @param id * Logical id of this artifact * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content * might not always be associated with version changes to the resource. * * @param meta * Metadata about the resource * * @return * A reference to this Builder instance */ @Override public Builder meta(Meta meta) { return (Builder) super.meta(meta); } /** * A reference to a set of rules that were followed when the resource was constructed, and which must be understood when * processing the content. Often, this is a reference to an implementation guide that defines the special rules along * with other profiles etc. * * @param implicitRules * A set of rules under which this content was created * * @return * A reference to this Builder instance */ @Override public Builder implicitRules(Uri implicitRules) { return (Builder) super.implicitRules(implicitRules); } /** * The base language in which the resource is written. * * @param language * Language of the resource content * * @return * A reference to this Builder instance */ @Override public Builder language(Code language) { return (Builder) super.language(language); } /** * A human-readable narrative that contains a summary of the resource and can be used to represent the content of the * resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient * detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what * content should be represented in the narrative to ensure clinical safety. * * @param text * Text summary of the resource, for human interpretation * * @return * A reference to this Builder instance */ @Override public Builder text(Narrative text) { return (Builder) super.text(text); } /** * These resources do not have an independent existence apart from the resource that contains them - they cannot be * identified independently, and nor can they have their own independent transaction scope. * *

Adds new element(s) to the existing list * * @param contained * Contained, inline Resources * * @return * A reference to this Builder instance */ @Override public Builder contained(Resource... contained) { return (Builder) super.contained(contained); } /** * These resources do not have an independent existence apart from the resource that contains them - they cannot be * identified independently, and nor can they have their own independent transaction scope. * *

Replaces the existing list with a new one containing elements from the Collection * * @param contained * Contained, inline Resources * * @return * A reference to this Builder instance */ @Override public Builder contained(Collection contained) { return (Builder) super.contained(contained); } /** * May be used to represent additional information that is not part of the basic definition of the resource. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the resource. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the resource and that * modifies the understanding of the element that contains it and/or the understanding of the containing element's * descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and * manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the * definition of the extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the resource and that * modifies the understanding of the element that contains it and/or the understanding of the containing element's * descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and * manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the * definition of the extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * An identifier for this patient. * *

Adds new element(s) to the existing list * * @param identifier * An identifier for this patient * * @return * A reference to this Builder instance */ public Builder identifier(Identifier... identifier) { for (Identifier value : identifier) { this.identifier.add(value); } return this; } /** * An identifier for this patient. * *

Replaces the existing list with a new one containing elements from the Collection * * @param identifier * An identifier for this patient * * @return * A reference to this Builder instance */ public Builder identifier(Collection identifier) { this.identifier = new ArrayList<>(identifier); return this; } /** * Whether this patient record is in active use. * Many systems use this property to mark as non-current patients, such as those that have not been seen for a period of * time based on an organization's business rules. * *

It is often used to filter patient lists to exclude inactive patients * *

Deceased patients may also be marked as inactive for the same reasons, but may be active for some time after death. * * @param active * Whether this patient's record is in active use * * @return * A reference to this Builder instance */ public Builder active(Boolean active) { this.active = active; return this; } /** * A name associated with the individual. * *

Adds new element(s) to the existing list * * @param name * A name associated with the patient * * @return * A reference to this Builder instance */ public Builder name(HumanName... name) { for (HumanName value : name) { this.name.add(value); } return this; } /** * A name associated with the individual. * *

Replaces the existing list with a new one containing elements from the Collection * * @param name * A name associated with the patient * * @return * A reference to this Builder instance */ public Builder name(Collection name) { this.name = new ArrayList<>(name); return this; } /** * A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted. * *

Adds new element(s) to the existing list * * @param telecom * A contact detail for the individual * * @return * A reference to this Builder instance */ public Builder telecom(ContactPoint... telecom) { for (ContactPoint value : telecom) { this.telecom.add(value); } return this; } /** * A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted. * *

Replaces the existing list with a new one containing elements from the Collection * * @param telecom * A contact detail for the individual * * @return * A reference to this Builder instance */ public Builder telecom(Collection telecom) { this.telecom = new ArrayList<>(telecom); return this; } /** * Administrative Gender - the gender that the patient is considered to have for administration and record keeping * purposes. * * @param gender * male | female | other | unknown * * @return * A reference to this Builder instance */ public Builder gender(AdministrativeGender gender) { this.gender = gender; return this; } /** * The date of birth for the individual. * * @param birthDate * The date of birth for the individual * * @return * A reference to this Builder instance */ public Builder birthDate(Date birthDate) { this.birthDate = birthDate; return this; } /** * Indicates if the individual is deceased or not. * *

This is a choice element with the following allowed types: *

    *
  • {@link Boolean}
  • *
  • {@link DateTime}
  • *
* * @param deceased * Indicates if the individual is deceased or not * * @return * A reference to this Builder instance */ public Builder deceased(Element deceased) { this.deceased = deceased; return this; } /** * An address for the individual. * *

Adds new element(s) to the existing list * * @param address * An address for the individual * * @return * A reference to this Builder instance */ public Builder address(Address... address) { for (Address value : address) { this.address.add(value); } return this; } /** * An address for the individual. * *

Replaces the existing list with a new one containing elements from the Collection * * @param address * An address for the individual * * @return * A reference to this Builder instance */ public Builder address(Collection

address) { this.address = new ArrayList<>(address); return this; } /** * This field contains a patient's most recent marital (civil) status. * * @param maritalStatus * Marital (civil) status of a patient * * @return * A reference to this Builder instance */ public Builder maritalStatus(CodeableConcept maritalStatus) { this.maritalStatus = maritalStatus; return this; } /** * Indicates whether the patient is part of a multiple (boolean) or indicates the actual birth order (integer). * *

This is a choice element with the following allowed types: *

    *
  • {@link Boolean}
  • *
  • {@link Integer}
  • *
* * @param multipleBirth * Whether patient is part of a multiple birth * * @return * A reference to this Builder instance */ public Builder multipleBirth(Element multipleBirth) { this.multipleBirth = multipleBirth; return this; } /** * Image of the patient. * *

Adds new element(s) to the existing list * * @param photo * Image of the patient * * @return * A reference to this Builder instance */ public Builder photo(Attachment... photo) { for (Attachment value : photo) { this.photo.add(value); } return this; } /** * Image of the patient. * *

Replaces the existing list with a new one containing elements from the Collection * * @param photo * Image of the patient * * @return * A reference to this Builder instance */ public Builder photo(Collection photo) { this.photo = new ArrayList<>(photo); return this; } /** * A contact party (e.g. guardian, partner, friend) for the patient. * *

Adds new element(s) to the existing list * * @param contact * A contact party (e.g. guardian, partner, friend) for the patient * * @return * A reference to this Builder instance */ public Builder contact(Contact... contact) { for (Contact value : contact) { this.contact.add(value); } return this; } /** * A contact party (e.g. guardian, partner, friend) for the patient. * *

Replaces the existing list with a new one containing elements from the Collection * * @param contact * A contact party (e.g. guardian, partner, friend) for the patient * * @return * A reference to this Builder instance */ public Builder contact(Collection contact) { this.contact = new ArrayList<>(contact); return this; } /** * A language which may be used to communicate with the patient about his or her health. * *

Adds new element(s) to the existing list * * @param communication * A language which may be used to communicate with the patient about his or her health * * @return * A reference to this Builder instance */ public Builder communication(Communication... communication) { for (Communication value : communication) { this.communication.add(value); } return this; } /** * A language which may be used to communicate with the patient about his or her health. * *

Replaces the existing list with a new one containing elements from the Collection * * @param communication * A language which may be used to communicate with the patient about his or her health * * @return * A reference to this Builder instance */ public Builder communication(Collection communication) { this.communication = new ArrayList<>(communication); return this; } /** * Patient's nominated care provider. * *

Adds new element(s) to the existing list * *

Allowed resource types for the references: *

    *
  • {@link Organization}
  • *
  • {@link Practitioner}
  • *
  • {@link PractitionerRole}
  • *
* * @param generalPractitioner * Patient's nominated primary care provider * * @return * A reference to this Builder instance */ public Builder generalPractitioner(Reference... generalPractitioner) { for (Reference value : generalPractitioner) { this.generalPractitioner.add(value); } return this; } /** * Patient's nominated care provider. * *

Replaces the existing list with a new one containing elements from the Collection * *

Allowed resource types for the references: *

    *
  • {@link Organization}
  • *
  • {@link Practitioner}
  • *
  • {@link PractitionerRole}
  • *
* * @param generalPractitioner * Patient's nominated primary care provider * * @return * A reference to this Builder instance */ public Builder generalPractitioner(Collection generalPractitioner) { this.generalPractitioner = new ArrayList<>(generalPractitioner); return this; } /** * Organization that is the custodian of the patient record. * *

Allowed resource types for this reference: *

    *
  • {@link Organization}
  • *
* * @param managingOrganization * Organization that is the custodian of the patient record * * @return * A reference to this Builder instance */ public Builder managingOrganization(Reference managingOrganization) { this.managingOrganization = managingOrganization; return this; } /** * Link to another patient resource that concerns the same actual patient. * *

Adds new element(s) to the existing list * * @param link * Link to another patient resource that concerns the same actual person * * @return * A reference to this Builder instance */ public Builder link(Link... link) { for (Link value : link) { this.link.add(value); } return this; } /** * Link to another patient resource that concerns the same actual patient. * *

Replaces the existing list with a new one containing elements from the Collection * * @param link * Link to another patient resource that concerns the same actual person * * @return * A reference to this Builder instance */ public Builder link(Collection link) { this.link = new ArrayList<>(link); return this; } /** * Build the {@link Patient} * * @return * An immutable object of type {@link Patient} * @throws IllegalStateException * if the current state cannot be built into a valid Patient per the base specification */ @Override public Patient build() { Patient patient = new Patient(this); if (validating) { validate(patient); } return patient; } protected void validate(Patient patient) { super.validate(patient); ValidationSupport.checkList(patient.identifier, "identifier", Identifier.class); ValidationSupport.checkList(patient.name, "name", HumanName.class); ValidationSupport.checkList(patient.telecom, "telecom", ContactPoint.class); ValidationSupport.choiceElement(patient.deceased, "deceased", Boolean.class, DateTime.class); ValidationSupport.checkList(patient.address, "address", Address.class); ValidationSupport.choiceElement(patient.multipleBirth, "multipleBirth", Boolean.class, Integer.class); ValidationSupport.checkList(patient.photo, "photo", Attachment.class); ValidationSupport.checkList(patient.contact, "contact", Contact.class); ValidationSupport.checkList(patient.communication, "communication", Communication.class); ValidationSupport.checkList(patient.generalPractitioner, "generalPractitioner", Reference.class); ValidationSupport.checkList(patient.link, "link", Link.class); ValidationSupport.checkReferenceType(patient.generalPractitioner, "generalPractitioner", "Organization", "Practitioner", "PractitionerRole"); ValidationSupport.checkReferenceType(patient.managingOrganization, "managingOrganization", "Organization"); } protected Builder from(Patient patient) { super.from(patient); identifier.addAll(patient.identifier); active = patient.active; name.addAll(patient.name); telecom.addAll(patient.telecom); gender = patient.gender; birthDate = patient.birthDate; deceased = patient.deceased; address.addAll(patient.address); maritalStatus = patient.maritalStatus; multipleBirth = patient.multipleBirth; photo.addAll(patient.photo); contact.addAll(patient.contact); communication.addAll(patient.communication); generalPractitioner.addAll(patient.generalPractitioner); managingOrganization = patient.managingOrganization; link.addAll(patient.link); return this; } } /** * A contact party (e.g. guardian, partner, friend) for the patient. */ public static class Contact extends BackboneElement { @Binding( bindingName = "ContactRelationship", strength = BindingStrength.Value.EXTENSIBLE, description = "The nature of the relationship between a patient and a contact person for that patient.", valueSet = "http://hl7.org/fhir/ValueSet/patient-contactrelationship" ) private final List relationship; private final HumanName name; private final List telecom; private final Address address; @Binding( bindingName = "AdministrativeGender", strength = BindingStrength.Value.REQUIRED, description = "The gender of a person used for administrative purposes.", valueSet = "http://hl7.org/fhir/ValueSet/administrative-gender|4.0.1" ) private final AdministrativeGender gender; @ReferenceTarget({ "Organization" }) private final Reference organization; private final Period period; private Contact(Builder builder) { super(builder); relationship = Collections.unmodifiableList(builder.relationship); name = builder.name; telecom = Collections.unmodifiableList(builder.telecom); address = builder.address; gender = builder.gender; organization = builder.organization; period = builder.period; } /** * The nature of the relationship between the patient and the contact person. * * @return * An unmodifiable list containing immutable objects of type {@link CodeableConcept} that may be empty. */ public List getRelationship() { return relationship; } /** * A name associated with the contact person. * * @return * An immutable object of type {@link HumanName} that may be null. */ public HumanName getName() { return name; } /** * A contact detail for the person, e.g. a telephone number or an email address. * * @return * An unmodifiable list containing immutable objects of type {@link ContactPoint} that may be empty. */ public List getTelecom() { return telecom; } /** * Address for the contact person. * * @return * An immutable object of type {@link Address} that may be null. */ public Address getAddress() { return address; } /** * Administrative Gender - the gender that the contact person is considered to have for administration and record keeping * purposes. * * @return * An immutable object of type {@link AdministrativeGender} that may be null. */ public AdministrativeGender getGender() { return gender; } /** * Organization on behalf of which the contact is acting or for which the contact is working. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getOrganization() { return organization; } /** * The period during which this contact person or organization is valid to be contacted relating to this patient. * * @return * An immutable object of type {@link Period} that may be null. */ public Period getPeriod() { return period; } @Override public boolean hasChildren() { return super.hasChildren() || !relationship.isEmpty() || (name != null) || !telecom.isEmpty() || (address != null) || (gender != null) || (organization != null) || (period != null); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(relationship, "relationship", visitor, CodeableConcept.class); accept(name, "name", visitor); accept(telecom, "telecom", visitor, ContactPoint.class); accept(address, "address", visitor); accept(gender, "gender", visitor); accept(organization, "organization", visitor); accept(period, "period", visitor); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Contact other = (Contact) obj; return Objects.equals(id, other.id) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(relationship, other.relationship) && Objects.equals(name, other.name) && Objects.equals(telecom, other.telecom) && Objects.equals(address, other.address) && Objects.equals(gender, other.gender) && Objects.equals(organization, other.organization) && Objects.equals(period, other.period); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, extension, modifierExtension, relationship, name, telecom, address, gender, organization, period); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends BackboneElement.Builder { private List relationship = new ArrayList<>(); private HumanName name; private List telecom = new ArrayList<>(); private Address address; private AdministrativeGender gender; private Reference organization; private Period period; private Builder() { super(); } /** * Unique id for the element within a resource (for internal references). This may be any string value that does not * contain spaces. * * @param id * Unique id for inter-element referencing * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * The nature of the relationship between the patient and the contact person. * *

Adds new element(s) to the existing list * * @param relationship * The kind of relationship * * @return * A reference to this Builder instance */ public Builder relationship(CodeableConcept... relationship) { for (CodeableConcept value : relationship) { this.relationship.add(value); } return this; } /** * The nature of the relationship between the patient and the contact person. * *

Replaces the existing list with a new one containing elements from the Collection * * @param relationship * The kind of relationship * * @return * A reference to this Builder instance */ public Builder relationship(Collection relationship) { this.relationship = new ArrayList<>(relationship); return this; } /** * A name associated with the contact person. * * @param name * A name associated with the contact person * * @return * A reference to this Builder instance */ public Builder name(HumanName name) { this.name = name; return this; } /** * A contact detail for the person, e.g. a telephone number or an email address. * *

Adds new element(s) to the existing list * * @param telecom * A contact detail for the person * * @return * A reference to this Builder instance */ public Builder telecom(ContactPoint... telecom) { for (ContactPoint value : telecom) { this.telecom.add(value); } return this; } /** * A contact detail for the person, e.g. a telephone number or an email address. * *

Replaces the existing list with a new one containing elements from the Collection * * @param telecom * A contact detail for the person * * @return * A reference to this Builder instance */ public Builder telecom(Collection telecom) { this.telecom = new ArrayList<>(telecom); return this; } /** * Address for the contact person. * * @param address * Address for the contact person * * @return * A reference to this Builder instance */ public Builder address(Address address) { this.address = address; return this; } /** * Administrative Gender - the gender that the contact person is considered to have for administration and record keeping * purposes. * * @param gender * male | female | other | unknown * * @return * A reference to this Builder instance */ public Builder gender(AdministrativeGender gender) { this.gender = gender; return this; } /** * Organization on behalf of which the contact is acting or for which the contact is working. * *

Allowed resource types for this reference: *

    *
  • {@link Organization}
  • *
* * @param organization * Organization that is associated with the contact * * @return * A reference to this Builder instance */ public Builder organization(Reference organization) { this.organization = organization; return this; } /** * The period during which this contact person or organization is valid to be contacted relating to this patient. * * @param period * The period during which this contact person or organization is valid to be contacted relating to this patient * * @return * A reference to this Builder instance */ public Builder period(Period period) { this.period = period; return this; } /** * Build the {@link Contact} * * @return * An immutable object of type {@link Contact} * @throws IllegalStateException * if the current state cannot be built into a valid Contact per the base specification */ @Override public Contact build() { Contact contact = new Contact(this); if (validating) { validate(contact); } return contact; } protected void validate(Contact contact) { super.validate(contact); ValidationSupport.checkList(contact.relationship, "relationship", CodeableConcept.class); ValidationSupport.checkList(contact.telecom, "telecom", ContactPoint.class); ValidationSupport.checkReferenceType(contact.organization, "organization", "Organization"); ValidationSupport.requireValueOrChildren(contact); } protected Builder from(Contact contact) { super.from(contact); relationship.addAll(contact.relationship); name = contact.name; telecom.addAll(contact.telecom); address = contact.address; gender = contact.gender; organization = contact.organization; period = contact.period; return this; } } } /** * A language which may be used to communicate with the patient about his or her health. */ public static class Communication extends BackboneElement { @Binding( bindingName = "Language", strength = BindingStrength.Value.PREFERRED, description = "A human language.", valueSet = "http://hl7.org/fhir/ValueSet/languages", maxValueSet = "http://hl7.org/fhir/ValueSet/all-languages" ) @Required private final CodeableConcept language; private final Boolean preferred; private Communication(Builder builder) { super(builder); language = builder.language; preferred = builder.preferred; } /** * The ISO-639-1 alpha 2 code in lower case for the language, optionally followed by a hyphen and the ISO-3166-1 alpha 2 * code for the region in upper case; e.g. "en" for English, or "en-US" for American English versus "en-EN" for England * English. * * @return * An immutable object of type {@link CodeableConcept} that is non-null. */ public CodeableConcept getLanguage() { return language; } /** * Indicates whether or not the patient prefers this language (over other languages he masters up a certain level). * * @return * An immutable object of type {@link Boolean} that may be null. */ public Boolean getPreferred() { return preferred; } @Override public boolean hasChildren() { return super.hasChildren() || (language != null) || (preferred != null); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(language, "language", visitor); accept(preferred, "preferred", visitor); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Communication other = (Communication) obj; return Objects.equals(id, other.id) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(language, other.language) && Objects.equals(preferred, other.preferred); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, extension, modifierExtension, language, preferred); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends BackboneElement.Builder { private CodeableConcept language; private Boolean preferred; private Builder() { super(); } /** * Unique id for the element within a resource (for internal references). This may be any string value that does not * contain spaces. * * @param id * Unique id for inter-element referencing * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * The ISO-639-1 alpha 2 code in lower case for the language, optionally followed by a hyphen and the ISO-3166-1 alpha 2 * code for the region in upper case; e.g. "en" for English, or "en-US" for American English versus "en-EN" for England * English. * *

This element is required. * * @param language * The language which can be used to communicate with the patient about his or her health * * @return * A reference to this Builder instance */ public Builder language(CodeableConcept language) { this.language = language; return this; } /** * Indicates whether or not the patient prefers this language (over other languages he masters up a certain level). * * @param preferred * Language preference indicator * * @return * A reference to this Builder instance */ public Builder preferred(Boolean preferred) { this.preferred = preferred; return this; } /** * Build the {@link Communication} * *

Required elements: *

    *
  • language
  • *
* * @return * An immutable object of type {@link Communication} * @throws IllegalStateException * if the current state cannot be built into a valid Communication per the base specification */ @Override public Communication build() { Communication communication = new Communication(this); if (validating) { validate(communication); } return communication; } protected void validate(Communication communication) { super.validate(communication); ValidationSupport.requireNonNull(communication.language, "language"); ValidationSupport.checkValueSetBinding(communication.language, "language", "http://hl7.org/fhir/ValueSet/all-languages", "urn:ietf:bcp:47"); ValidationSupport.requireValueOrChildren(communication); } protected Builder from(Communication communication) { super.from(communication); language = communication.language; preferred = communication.preferred; return this; } } } /** * Link to another patient resource that concerns the same actual patient. */ public static class Link extends BackboneElement { @Summary @ReferenceTarget({ "Patient", "RelatedPerson" }) @Required private final Reference other; @Summary @Binding( bindingName = "LinkType", strength = BindingStrength.Value.REQUIRED, description = "The type of link between this patient resource and another patient resource.", valueSet = "http://hl7.org/fhir/ValueSet/link-type|4.0.1" ) @Required private final LinkType type; private Link(Builder builder) { super(builder); other = builder.other; type = builder.type; } /** * The other patient resource that the link refers to. * * @return * An immutable object of type {@link Reference} that is non-null. */ public Reference getOther() { return other; } /** * The type of link between this patient resource and another patient resource. * * @return * An immutable object of type {@link LinkType} that is non-null. */ public LinkType getType() { return type; } @Override public boolean hasChildren() { return super.hasChildren() || (other != null) || (type != null); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(other, "other", visitor); accept(type, "type", visitor); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Link other = (Link) obj; return Objects.equals(id, other.id) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(this.other, other.other) && Objects.equals(type, other.type); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, extension, modifierExtension, other, type); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends BackboneElement.Builder { private Reference other; private LinkType type; private Builder() { super(); } /** * Unique id for the element within a resource (for internal references). This may be any string value that does not * contain spaces. * * @param id * Unique id for inter-element referencing * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * The other patient resource that the link refers to. * *

This element is required. * *

Allowed resource types for this reference: *

    *
  • {@link Patient}
  • *
  • {@link RelatedPerson}
  • *
* * @param other * The other patient or related person resource that the link refers to * * @return * A reference to this Builder instance */ public Builder other(Reference other) { this.other = other; return this; } /** * The type of link between this patient resource and another patient resource. * *

This element is required. * * @param type * replaced-by | replaces | refer | seealso * * @return * A reference to this Builder instance */ public Builder type(LinkType type) { this.type = type; return this; } /** * Build the {@link Link} * *

Required elements: *

    *
  • other
  • *
  • type
  • *
* * @return * An immutable object of type {@link Link} * @throws IllegalStateException * if the current state cannot be built into a valid Link per the base specification */ @Override public Link build() { Link link = new Link(this); if (validating) { validate(link); } return link; } protected void validate(Link link) { super.validate(link); ValidationSupport.requireNonNull(link.other, "other"); ValidationSupport.requireNonNull(link.type, "type"); ValidationSupport.checkReferenceType(link.other, "other", "Patient", "RelatedPerson"); ValidationSupport.requireValueOrChildren(link); } protected Builder from(Link link) { super.from(link); other = link.other; type = link.type; return this; } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy