Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.CodingDt


     * <b>Definition:</b>
     * Code specifying the type of source where event originated
     * </p>
   */
  public CodingDt addType() {
    CodingDt newType = new CodingDt();
    getType().add(newType);
    return newType;
  }
View Full Code Here


   *            The codes
   */
  public CodingListParam(String theSystem, String... theCodes) {
    if (theCodes != null) {
      for (String next : theCodes) {
        add(new CodingDt(theSystem, next));
      }
    }
  }
View Full Code Here

   *            The codes
   */
  public CodingListParam(String theSystem, Collection<String> theCodes) {
    if (theCodes != null) {
      for (String next : theCodes) {
        add(new CodingDt(theSystem, next));
      }
    }
  }
View Full Code Here

  @Override
  public void setValuesAsQueryTokens(List<String> theParameters) {
    getCodings().clear();
    for (String string : theParameters) {
      CodingDt dt = new CodingDt();
      dt.setValueAsQueryToken(string);
      myCodings.add(dt);
    }
  }
View Full Code Here

  @Override
  public void setValuesAsQueryTokens(List<String> theParameters) {
    getCodings().clear();
    for (String string : theParameters) {
      CodingDt dt = new CodingDt();
      dt.setValueAsQueryToken(string);
      myCodings.add(dt);
    }
  }
View Full Code Here

    getCoding().clear();
    if (theValues == null) {
      return;
    }
    for (T next : theValues) {
      getCoding().add(new CodingDt(myBinder.toSystemString(next), myBinder.toCodeString(next)));
    }
  }
View Full Code Here

  public void setValueAsEnum(T theValue) {
    getCoding().clear();
    if (theValue == null) {
      return;
    }
    getCoding().add(new CodingDt(myBinder.toSystemString(theValue), myBinder.toCodeString(theValue)));
  }
View Full Code Here

     * Gender.
     * </p>
   */
  public CodingDt getGender() { 
    if (myGender == null) {
      myGender = new CodingDt();
    }
    return myGender;
  }
View Full Code Here

     * The type of coverage: social program, medical plan, accident coverage (workers compensation, auto), group health.
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

     * The type of coverage: social program, medical plan, accident coverage (workers compensation, auto), group health.
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.CodingDt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.