org.hl7.fhir.r4.model.Ratio Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.hl7.fhir.r4 Show documentation
Show all versions of org.hl7.fhir.r4 Show documentation
Builds the hapi fhir r4. Requires hapi-fhir-base and hapi-fhir-utilities be built first and be
excluded from any other poms requiring it.
The newest version!
package org.hl7.fhir.r4.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 Tue, May 12, 2020 07:26+1000 for FHIR v4.0.1
import java.util.List;
import org.hl7.fhir.exceptions.FHIRException;
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 children) {
super.listChildren(children);
children.add(new Property("numerator", "Quantity", "The value of the numerator.", 0, 1, numerator));
children.add(new Property("denominator", "Quantity", "The value of the denominator.", 0, 1, denominator));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 1747334793:
/* numerator */ return new Property("numerator", "Quantity", "The value of the numerator.", 0, 1, numerator);
case -1983274394:
/* denominator */ return new Property("denominator", "Quantity", "The value of the denominator.", 0, 1,
denominator);
default:
return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 1747334793:
/* numerator */ return this.numerator == null ? new Base[0] : new Base[] { this.numerator }; // Quantity
case -1983274394:
/* denominator */ return this.denominator == null ? new Base[0] : new Base[] { this.denominator }; // Quantity
default:
return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 1747334793: // numerator
this.numerator = castToQuantity(value); // Quantity
return value;
case -1983274394: // denominator
this.denominator = castToQuantity(value); // Quantity
return value;
default:
return super.setProperty(hash, name, value);
}
}
@Override
public Base 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
return super.setProperty(name, value);
return value;
}
@Override
public void removeChild(String name, Base value) throws FHIRException {
if (name.equals("numerator")) {
this.numerator = null;
} else if (name.equals("denominator")) {
this.denominator = null;
} else
super.removeChild(name, value);
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 1747334793:
return getNumerator();
case -1983274394:
return getDenominator();
default:
return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 1747334793:
/* numerator */ return new String[] { "Quantity" };
case -1983274394:
/* denominator */ return new String[] { "Quantity" };
default:
return super.getTypesForProperty(hash, name);
}
}
@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);
return dst;
}
public void copyValues(Ratio dst) {
super.copyValues(dst);
dst.numerator = numerator == null ? null : numerator.copy();
dst.denominator = denominator == null ? null : denominator.copy();
}
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() && ca.uhn.fhir.util.ElementUtil.isEmpty(numerator, denominator);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy