All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.fhir.dstu2.model.Ratio Maven / Gradle / Ivy

The newest version!
package org.hl7.fhir.dstu2.model;

/*
  Copyright (c) 2011+, HL7, Inc.
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without modification, 
  are permitted provided that the following conditions are met:
  
   * Redistributions of source code must retain the above copyright notice, this 
     list of conditions and the following disclaimer.
   * Redistributions in binary form must reproduce the above copyright notice, 
     this list of conditions and the following disclaimer in the documentation 
     and/or other materials provided with the distribution.
   * Neither the name of HL7 nor the names of its contributors may be used to 
     endorse or promote products derived from this software without specific 
     prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
  POSSIBILITY OF SUCH DAMAGE.
  
*/

// Generated on Wed, Jul 13, 2016 05:32+1000 for FHIR v1.0.2
import java.util.List;

import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.DatatypeDef;
import ca.uhn.fhir.model.api.annotation.Description;
import org.hl7.fhir.instance.model.api.ICompositeType;
import org.hl7.fhir.exceptions.FHIRException;

/**
 * A relationship of two Quantity values - expressed as a numerator and a
 * denominator.
 */
@DatatypeDef(name = "Ratio")
public class Ratio extends Type implements ICompositeType {

  /**
   * The value of the numerator.
   */
  @Child(name = "numerator", type = { Quantity.class }, order = 0, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "Numerator value", formalDefinition = "The value of the numerator.")
  protected Quantity numerator;

  /**
   * The value of the denominator.
   */
  @Child(name = "denominator", type = { Quantity.class }, order = 1, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "Denominator value", formalDefinition = "The value of the denominator.")
  protected Quantity denominator;

  private static final long serialVersionUID = 479922563L;

  /*
   * Constructor
   */
  public Ratio() {
    super();
  }

  /**
   * @return {@link #numerator} (The value of the numerator.)
   */
  public Quantity getNumerator() {
    if (this.numerator == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create Ratio.numerator");
      else if (Configuration.doAutoCreate())
        this.numerator = new Quantity(); // cc
    return this.numerator;
  }

  public boolean hasNumerator() {
    return this.numerator != null && !this.numerator.isEmpty();
  }

  /**
   * @param value {@link #numerator} (The value of the numerator.)
   */
  public Ratio setNumerator(Quantity value) {
    this.numerator = value;
    return this;
  }

  /**
   * @return {@link #denominator} (The value of the denominator.)
   */
  public Quantity getDenominator() {
    if (this.denominator == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create Ratio.denominator");
      else if (Configuration.doAutoCreate())
        this.denominator = new Quantity(); // cc
    return this.denominator;
  }

  public boolean hasDenominator() {
    return this.denominator != null && !this.denominator.isEmpty();
  }

  /**
   * @param value {@link #denominator} (The value of the denominator.)
   */
  public Ratio setDenominator(Quantity value) {
    this.denominator = value;
    return this;
  }

  protected void listChildren(List childrenList) {
    super.listChildren(childrenList);
    childrenList.add(new Property("numerator", "Quantity", "The value of the numerator.", 0,
        java.lang.Integer.MAX_VALUE, numerator));
    childrenList.add(new Property("denominator", "Quantity", "The value of the denominator.", 0,
        java.lang.Integer.MAX_VALUE, denominator));
  }

  @Override
  public void setProperty(String name, Base value) throws FHIRException {
    if (name.equals("numerator"))
      this.numerator = castToQuantity(value); // Quantity
    else if (name.equals("denominator"))
      this.denominator = castToQuantity(value); // Quantity
    else
      super.setProperty(name, value);
  }

  @Override
  public Base addChild(String name) throws FHIRException {
    if (name.equals("numerator")) {
      this.numerator = new Quantity();
      return this.numerator;
    } else if (name.equals("denominator")) {
      this.denominator = new Quantity();
      return this.denominator;
    } else
      return super.addChild(name);
  }

  public String fhirType() {
    return "Ratio";

  }

  public Ratio copy() {
    Ratio dst = new Ratio();
    copyValues(dst);
    dst.numerator = numerator == null ? null : numerator.copy();
    dst.denominator = denominator == null ? null : denominator.copy();
    return dst;
  }

  protected Ratio typedCopy() {
    return copy();
  }

  @Override
  public boolean equalsDeep(Base other) {
    if (!super.equalsDeep(other))
      return false;
    if (!(other instanceof Ratio))
      return false;
    Ratio o = (Ratio) other;
    return compareDeep(numerator, o.numerator, true) && compareDeep(denominator, o.denominator, true);
  }

  @Override
  public boolean equalsShallow(Base other) {
    if (!super.equalsShallow(other))
      return false;
    if (!(other instanceof Ratio))
      return false;
    Ratio o = (Ratio) other;
    return true;
  }

  public boolean isEmpty() {
    return super.isEmpty() && (numerator == null || numerator.isEmpty())
        && (denominator == null || denominator.isEmpty());
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy