Package ca.uhn.fhir.model.primitive

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


   */
  public AddressDt addLine( String theString) {
    if (myLine == null) {
      myLine = new java.util.ArrayList<StringDt>();
    }
    myLine.add(new StringDt(theString));
    return this;
  }
View Full Code Here


     * The name of the city, town, village or other community or delivery center.
     * </p>
   */
  public StringDt getCity() { 
    if (myCity == null) {
      myCity = new StringDt();
    }
    return myCity;
  }
View Full Code Here

     * <b>Definition:</b>
     * The name of the city, town, village or other community or delivery center.
     * </p>
   */
  public AddressDt setCity( String theString) {
    myCity = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (i.e. US 2 letter state codes).
     * </p>
   */
  public StringDt getState() { 
    if (myState == null) {
      myState = new StringDt();
    }
    return myState;
  }
View Full Code Here

     * <b>Definition:</b>
     * Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (i.e. US 2 letter state codes).
     * </p>
   */
  public AddressDt setState( String theString) {
    myState = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A postal code designating a region defined by the postal service.
     * </p>
   */
  public StringDt getZip() { 
    if (myZip == null) {
      myZip = new StringDt();
    }
    return myZip;
  }
View Full Code Here

     * <b>Definition:</b>
     * A postal code designating a region defined by the postal service.
     * </p>
   */
  public AddressDt setZip( String theString) {
    myZip = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Country - a nation as commonly understood or generally accepted
     * </p>
   */
  public StringDt getCountry() { 
    if (myCountry == null) {
      myCountry = new StringDt();
    }
    return myCountry;
  }
View Full Code Here

     * <b>Definition:</b>
     * Country - a nation as commonly understood or generally accepted
     * </p>
   */
  public AddressDt setCountry( String theString) {
    myCountry = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Official human-readable label for the composition
     * </p>
   */
  public StringDt getTitle() { 
    if (myTitle == null) {
      myTitle = new StringDt();
    }
    return myTitle;
  }
View Full Code Here

TOP

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

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.