Definition: All kinds of technology mediated contact details for a person or organization, including telephone, email, etc.
Requirements: Need to track phone, fax, mobile, sms numbers, email addresses, twitter tags, etc.
521522523524525526527528529
* <b>Definition:</b> * A contact detail for the organization * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
555556557558559560561562
*/ public Organization addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
573574575576577578579580
*/ public Organization addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
975976977978979980981982983
* <b>Definition:</b> * A contact detail (e.g. a telephone number or an email address) by which the party may be contacted. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
10091010101110121013101410151016
*/ public Contact addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
10271028102910301031103210331034
*/ public Contact addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
566567568569570571572573574
* <b>Definition:</b> * A contact detail for the practitioner, e.g. a telephone number or an email address. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
600601602603604605606607
*/ public Practitioner addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
618619620621622623624625
*/ public Practitioner addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
100710081009101010111012101310141015
* An e-mail, phone, website or other contact point to use to resolve issues with message communications. * </p> */ public ContactDt getContact() { if (myContact == null) { myContact = new ContactDt(); } return myContact; }