Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The identification of the system that provides the coded form of the unit
     * </p>
   */
  public QuantityDt setSystem( String theUri) {
    mySystem = new UriDt(theUri);
    return this;
  }
View Full Code Here


     * The identification of the code system that defines the meaning of the symbol in the code.
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
View Full Code Here

     * <b>Definition:</b>
     * The identification of the code system that defines the meaning of the symbol in the code.
     * </p>
   */
  public CodingDt setSystem( String theUri) {
    mySystem = new UriDt(theUri);
    return this;
  }
View Full Code Here

   */
  @Override
  public void setValueAsQueryToken(String theQualifier, String theParameter) {
    int barIndex = theParameter.indexOf('|');
    if (barIndex != -1) {
      setSystem(new UriDt(theParameter.substring(0, barIndex)));
      setCode(theParameter.substring(barIndex + 1));
    } else {
      setCode(theParameter);
    }
  } 
View Full Code Here

     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public UriDt getReference() { 
    if (myReference == null) {
      myReference = new UriDt();
    }
    return myReference;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public Agent setReference( String theUri) {
    myReference = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public UriDt getReference() { 
    if (myReference == null) {
      myReference = new UriDt();
    }
    return myReference;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public Entity setReference( String theUri) {
    myReference = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * URL to FASTA file used as reference assembly
     * </p>
   */
  public UriDt getReferenceFasta() { 
    if (myReferenceFasta == null) {
      myReferenceFasta = new UriDt();
    }
    return myReferenceFasta;
  }
View Full Code Here

     * <b>Definition:</b>
     * URL to FASTA file used as reference assembly
     * </p>
   */
  public GVFMeta setReferenceFasta( String theUri) {
    myReferenceFasta = new UriDt(theUri);
    return this;
  }
View Full Code Here

TOP

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

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.