Definition: A technical identifier - identifies some entity uniquely and unambiguously
Requirements: Need to be able to identify things with confidence and be sure that the identification is not subject to misinterpretation
365366367368369370371372
*/ public Practitioner addIdentifier( String theSystem, String theValue) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theSystem, theValue)); return this; }
178179180181182183184185186
* <b>Definition:</b> * Identifier assigned to the resource for business purposes, outside the context of FHIR * </p> */ public IdentifierDt addIdentifier() { IdentifierDt newType = new IdentifierDt(); getIdentifier().add(newType); return newType; }
212213214215216217218219
*/ public Other addIdentifier( IdentifierUseEnum theUse, String theSystem, String theValue, String theLabel) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theUse, theSystem, theValue, theLabel)); return this; }
230231232233234235236237
*/ public Other addIdentifier( String theSystem, String theValue) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theSystem, theValue)); return this; }
219220221222223224225226227
* <b>Definition:</b> * * </p> */ public IdentifierDt addIdentifier() { IdentifierDt newType = new IdentifierDt(); getIdentifier().add(newType); return newType; }
253254255256257258259260
*/ public Slot addIdentifier( IdentifierUseEnum theUse, String theSystem, String theValue, String theLabel) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theUse, theSystem, theValue, theLabel)); return this; }
271272273274275276277278
*/ public Slot addIdentifier( String theSystem, String theValue) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theSystem, theValue)); return this; }
166167168169170171172173174
* <b>Definition:</b> * Identifier assigned to the alert for external use (outside the FHIR environment) * </p> */ public IdentifierDt addIdentifier() { IdentifierDt newType = new IdentifierDt(); getIdentifier().add(newType); return newType; }
200201202203204205206207
*/ public Alert addIdentifier( IdentifierUseEnum theUse, String theSystem, String theValue, String theLabel) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theUse, theSystem, theValue, theLabel)); return this; }
218219220221222223224225
*/ public Alert addIdentifier( String theSystem, String theValue) { if (myIdentifier == null) { myIdentifier = new java.util.ArrayList<IdentifierDt>(); } myIdentifier.add(new IdentifierDt(theSystem, theValue)); return this; }