Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Longitude. The value domain and the interpretation are the same as for the text of the longitude element in KML (see notes below)
     * </p>
   */
  public Position setLongitude( java.math.BigDecimal theValue) {
    myLongitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here


     * <b>Definition:</b>
     * Longitude. The value domain and the interpretation are the same as for the text of the longitude element in KML (see notes below)
     * </p>
   */
  public Position setLongitude( long theValue) {
    myLongitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * Latitude. The value domain and the interpretation are the same as for the text of the latitude element in KML (see notes below)
     * </p>
   */
  public DecimalDt getLatitude() { 
    if (myLatitude == null) {
      myLatitude = new DecimalDt();
    }
    return myLatitude;
  }
View Full Code Here

     * <b>Definition:</b>
     * Latitude. The value domain and the interpretation are the same as for the text of the latitude element in KML (see notes below)
     * </p>
   */
  public Position setLatitude( double theValue) {
    myLatitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Latitude. The value domain and the interpretation are the same as for the text of the latitude element in KML (see notes below)
     * </p>
   */
  public Position setLatitude( java.math.BigDecimal theValue) {
    myLatitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Latitude. The value domain and the interpretation are the same as for the text of the latitude element in KML (see notes below)
     * </p>
   */
  public Position setLatitude( long theValue) {
    myLatitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * Altitude. The value domain and the interpretation are the same as for the text of the altitude element in KML (see notes below)
     * </p>
   */
  public DecimalDt getAltitude() { 
    if (myAltitude == null) {
      myAltitude = new DecimalDt();
    }
    return myAltitude;
  }
View Full Code Here

     * <b>Definition:</b>
     * Altitude. The value domain and the interpretation are the same as for the text of the altitude element in KML (see notes below)
     * </p>
   */
  public Position setAltitude( double theValue) {
    myAltitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Altitude. The value domain and the interpretation are the same as for the text of the altitude element in KML (see notes below)
     * </p>
   */
  public Position setAltitude( java.math.BigDecimal theValue) {
    myAltitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Altitude. The value domain and the interpretation are the same as for the text of the altitude element in KML (see notes below)
     * </p>
   */
  public Position setAltitude( long theValue) {
    myAltitude = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

TOP

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

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.