Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.CodeDt


     * The match value may be either a code defined by the system, or a string value which is used a regex match on the literal string of the property value
     * </p>
   */
  public CodeDt getValue() { 
    if (myValue == null) {
      myValue = new CodeDt();
    }
    return myValue;
  }
View Full Code Here


     * <b>Definition:</b>
     * The match value may be either a code defined by the system, or a string value which is used a regex match on the literal string of the property value
     * </p>
   */
  public ComposeIncludeFilter setValue( String theCode) {
    myValue = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public ExpansionContains setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * A unique code (within the profile) used to identify the extension
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     * A unique code (within the profile) used to identify the extension
     * </p>
   */
  public ExtensionDefn setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public DefineConcept setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * A computer processable form of the units in some unit representation system
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     * A computer processable form of the units in some unit representation system
     * </p>
   */
  public QuantityDt setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.CodeDt

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.