package org.hl7.fhir.instance.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, Nov 11, 2015 10:54-0500 for FHIR v1.0.2 import java.util.List; import org.hl7.fhir.instance.model.api.ICompositeType; import ca.uhn.fhir.model.api.annotation.Child; import ca.uhn.fhir.model.api.annotation.DatatypeDef; import ca.uhn.fhir.model.api.annotation.Description; /** * 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<Property> 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)); } 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()) ; } }