Package ca.uhn.fhir.model.primitive

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


     * Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate
     * </p>
   */
  public CodeDt getContentType() { 
    if (myContentType == null) {
      myContentType = new CodeDt();
    }
    return myContentType;
  }
View Full Code Here


     * <b>Definition:</b>
     * Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate
     * </p>
   */
  public AttachmentDt setContentType( String theCode) {
    myContentType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * The human language of the content. The value can be any valid value according to BCP 47
     * </p>
   */
  public CodeDt getLanguage() { 
    if (myLanguage == null) {
      myLanguage = new CodeDt();
    }
    return myLanguage;
  }
View Full Code Here

     * <b>Definition:</b>
     * The human language of the content. The value can be any valid value according to BCP 47
     * </p>
   */
  public AttachmentDt setLanguage( String theCode) {
    myLanguage = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Mime type for certificate
     * </p>
   */
  public CodeDt getType() { 
    if (myType == null) {
      myType = new CodeDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Mime type for certificate
     * </p>
   */
  public RestSecurityCertificate setType( String theCode) {
    myType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Type of the sequencing lab
     * </p>
   */
  public CodeDt getType() { 
    if (myType == null) {
      myType = new CodeDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Type of the sequencing lab
     * </p>
   */
  public SequencingLab setType( String theCode) {
    myType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Class of sequencing system
     * </p>
   */
  public CodeDt getClassElement() { 
    if (myClassElement == null) {
      myClassElement = new CodeDt();
    }
    return myClassElement;
  }
View Full Code Here

     * <b>Definition:</b>
     * Class of sequencing system
     * </p>
   */
  public System setClassElement( String theCode) {
    myClassElement = 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.