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.
673674675676677678679680681
* <b>Definition:</b> * Contacts of the publisher to assist a user in finding and communicating with the publisher * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
911912913914915916917918919
* <b>Definition:</b> * Contact details for an organization or a particular human that is responsible for the device * </p> */ public ContactDt addContact() { ContactDt newType = new ContactDt(); getContact().add(newType); return newType; }
469470471472473474475476477
* <b>Definition:</b> * * </p> */ public ContactDt addContact() { ContactDt newType = new ContactDt(); getContact().add(newType); return newType; }
557558559560561562563564565
* <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; }
142614271428142914301431143214331434
* <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; }
625626627628629630631632633
659660661662663664665666
*/ public ValueSet addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
677678679680681682683684
*/ public ValueSet addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
674675676677678679680681682
708709710711712713714715
*/ public ConceptMap addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }