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.
677678679680681682683684
*/ public ValueSet addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
678679680681682683684685686
* <b>Definition:</b> * Contact details to assist a user in finding and communicating with the publisher * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
712713714715716717718719
*/ public Profile addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
730731732733734735736737
*/ public Profile addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
756757758759760761762763764
* <b>Definition:</b> * A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
790791792793794795796797
*/ public Patient addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
808809810811812813814815
*/ public Patient addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
165916601661166216631664166516661667
* <b>Definition:</b> * A contact detail for the person, e.g. a telephone number or an email address. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
16931694169516961697169816991700
*/ public Contact addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
17111712171317141715171617171718
*/ public Contact addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }