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

com.ibm.fhir.model.type.ProdCharacteristic Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019, 2021
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.model.type;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

import javax.annotation.Generated;

import com.ibm.fhir.model.annotation.Summary;
import com.ibm.fhir.model.util.ValidationSupport;
import com.ibm.fhir.model.visitor.Visitor;

/**
 * The marketing status describes the date when a medicinal product is actually put on the market or the date as of which 
 * it is no longer available.
 */
@Generated("com.ibm.fhir.tools.CodeGenerator")
public class ProdCharacteristic extends BackboneElement {
    @Summary
    private final Quantity height;
    @Summary
    private final Quantity width;
    @Summary
    private final Quantity depth;
    @Summary
    private final Quantity weight;
    @Summary
    private final Quantity nominalVolume;
    @Summary
    private final Quantity externalDiameter;
    @Summary
    private final String shape;
    @Summary
    private final List color;
    @Summary
    private final List imprint;
    @Summary
    private final List image;
    @Summary
    private final CodeableConcept scoring;

    private ProdCharacteristic(Builder builder) {
        super(builder);
        height = builder.height;
        width = builder.width;
        depth = builder.depth;
        weight = builder.weight;
        nominalVolume = builder.nominalVolume;
        externalDiameter = builder.externalDiameter;
        shape = builder.shape;
        color = Collections.unmodifiableList(builder.color);
        imprint = Collections.unmodifiableList(builder.imprint);
        image = Collections.unmodifiableList(builder.image);
        scoring = builder.scoring;
    }

    /**
     * Where applicable, the height can be specified using a numerical value and its unit of measurement The unit of 
     * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol 
     * identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link Quantity} that may be null.
     */
    public Quantity getHeight() {
        return height;
    }

    /**
     * Where applicable, the width can be specified using a numerical value and its unit of measurement The unit of 
     * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol 
     * identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link Quantity} that may be null.
     */
    public Quantity getWidth() {
        return width;
    }

    /**
     * Where applicable, the depth can be specified using a numerical value and its unit of measurement The unit of 
     * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol 
     * identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link Quantity} that may be null.
     */
    public Quantity getDepth() {
        return depth;
    }

    /**
     * Where applicable, the weight can be specified using a numerical value and its unit of measurement The unit of 
     * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol 
     * identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link Quantity} that may be null.
     */
    public Quantity getWeight() {
        return weight;
    }

    /**
     * Where applicable, the nominal volume can be specified using a numerical value and its unit of measurement The unit of 
     * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol 
     * identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link Quantity} that may be null.
     */
    public Quantity getNominalVolume() {
        return nominalVolume;
    }

    /**
     * Where applicable, the external diameter can be specified using a numerical value and its unit of measurement The unit 
     * of measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol 
     * identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link Quantity} that may be null.
     */
    public Quantity getExternalDiameter() {
        return externalDiameter;
    }

    /**
     * Where applicable, the shape can be specified An appropriate controlled vocabulary shall be used The term and the term 
     * identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link String} that may be null.
     */
    public String getShape() {
        return shape;
    }

    /**
     * Where applicable, the color can be specified An appropriate controlled vocabulary shall be used The term and the term 
     * identifier shall be used.
     * 
     * @return
     *     An unmodifiable list containing immutable objects of type {@link String} that may be empty.
     */
    public List getColor() {
        return color;
    }

    /**
     * Where applicable, the imprint can be specified as text.
     * 
     * @return
     *     An unmodifiable list containing immutable objects of type {@link String} that may be empty.
     */
    public List getImprint() {
        return imprint;
    }

    /**
     * Where applicable, the image can be provided The format of the image attachment shall be specified by regional 
     * implementations.
     * 
     * @return
     *     An unmodifiable list containing immutable objects of type {@link Attachment} that may be empty.
     */
    public List getImage() {
        return image;
    }

    /**
     * Where applicable, the scoring can be specified An appropriate controlled vocabulary shall be used The term and the 
     * term identifier shall be used.
     * 
     * @return
     *     An immutable object of type {@link CodeableConcept} that may be null.
     */
    public CodeableConcept getScoring() {
        return scoring;
    }

    @Override
    public boolean hasChildren() {
        return super.hasChildren() || 
            (height != null) || 
            (width != null) || 
            (depth != null) || 
            (weight != null) || 
            (nominalVolume != null) || 
            (externalDiameter != null) || 
            (shape != null) || 
            !color.isEmpty() || 
            !imprint.isEmpty() || 
            !image.isEmpty() || 
            (scoring != null);
    }

    @Override
    public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) {
        if (visitor.preVisit(this)) {
            visitor.visitStart(elementName, elementIndex, this);
            if (visitor.visit(elementName, elementIndex, this)) {
                // visit children
                accept(id, "id", visitor);
                accept(extension, "extension", visitor, Extension.class);
                accept(modifierExtension, "modifierExtension", visitor, Extension.class);
                accept(height, "height", visitor);
                accept(width, "width", visitor);
                accept(depth, "depth", visitor);
                accept(weight, "weight", visitor);
                accept(nominalVolume, "nominalVolume", visitor);
                accept(externalDiameter, "externalDiameter", visitor);
                accept(shape, "shape", visitor);
                accept(color, "color", visitor, String.class);
                accept(imprint, "imprint", visitor, String.class);
                accept(image, "image", visitor, Attachment.class);
                accept(scoring, "scoring", visitor);
            }
            visitor.visitEnd(elementName, elementIndex, this);
            visitor.postVisit(this);
        }
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        ProdCharacteristic other = (ProdCharacteristic) obj;
        return Objects.equals(id, other.id) && 
            Objects.equals(extension, other.extension) && 
            Objects.equals(modifierExtension, other.modifierExtension) && 
            Objects.equals(height, other.height) && 
            Objects.equals(width, other.width) && 
            Objects.equals(depth, other.depth) && 
            Objects.equals(weight, other.weight) && 
            Objects.equals(nominalVolume, other.nominalVolume) && 
            Objects.equals(externalDiameter, other.externalDiameter) && 
            Objects.equals(shape, other.shape) && 
            Objects.equals(color, other.color) && 
            Objects.equals(imprint, other.imprint) && 
            Objects.equals(image, other.image) && 
            Objects.equals(scoring, other.scoring);
    }

    @Override
    public int hashCode() {
        int result = hashCode;
        if (result == 0) {
            result = Objects.hash(id, 
                extension, 
                modifierExtension, 
                height, 
                width, 
                depth, 
                weight, 
                nominalVolume, 
                externalDiameter, 
                shape, 
                color, 
                imprint, 
                image, 
                scoring);
            hashCode = result;
        }
        return result;
    }

    @Override
    public Builder toBuilder() {
        return new Builder().from(this);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static class Builder extends BackboneElement.Builder {
        private Quantity height;
        private Quantity width;
        private Quantity depth;
        private Quantity weight;
        private Quantity nominalVolume;
        private Quantity externalDiameter;
        private String shape;
        private List color = new ArrayList<>();
        private List imprint = new ArrayList<>();
        private List image = new ArrayList<>();
        private CodeableConcept scoring;

        private Builder() {
            super();
        }

        /**
         * Unique id for the element within a resource (for internal references). This may be any string value that does not 
         * contain spaces.
         * 
         * @param id
         *     Unique id for inter-element referencing
         * 
         * @return
         *     A reference to this Builder instance
         */
        @Override
        public Builder id(java.lang.String id) {
            return (Builder) super.id(id);
        }

        /**
         * May be used to represent additional information that is not part of the basic definition of the element. To make the 
         * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of 
         * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part 
         * of the definition of the extension.
         * 
         * 

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * Where applicable, the height can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used. * * @param height * Where applicable, the height can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used * * @return * A reference to this Builder instance */ public Builder height(Quantity height) { this.height = height; return this; } /** * Where applicable, the width can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used. * * @param width * Where applicable, the width can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used * * @return * A reference to this Builder instance */ public Builder width(Quantity width) { this.width = width; return this; } /** * Where applicable, the depth can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used. * * @param depth * Where applicable, the depth can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used * * @return * A reference to this Builder instance */ public Builder depth(Quantity depth) { this.depth = depth; return this; } /** * Where applicable, the weight can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used. * * @param weight * Where applicable, the weight can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used * * @return * A reference to this Builder instance */ public Builder weight(Quantity weight) { this.weight = weight; return this; } /** * Where applicable, the nominal volume can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used. * * @param nominalVolume * Where applicable, the nominal volume can be specified using a numerical value and its unit of measurement The unit of * measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used * * @return * A reference to this Builder instance */ public Builder nominalVolume(Quantity nominalVolume) { this.nominalVolume = nominalVolume; return this; } /** * Where applicable, the external diameter can be specified using a numerical value and its unit of measurement The unit * of measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used. * * @param externalDiameter * Where applicable, the external diameter can be specified using a numerical value and its unit of measurement The unit * of measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol * identifier shall be used * * @return * A reference to this Builder instance */ public Builder externalDiameter(Quantity externalDiameter) { this.externalDiameter = externalDiameter; return this; } /** * Where applicable, the shape can be specified An appropriate controlled vocabulary shall be used The term and the term * identifier shall be used. * * @param shape * Where applicable, the shape can be specified An appropriate controlled vocabulary shall be used The term and the term * identifier shall be used * * @return * A reference to this Builder instance */ public Builder shape(String shape) { this.shape = shape; return this; } /** * Where applicable, the color can be specified An appropriate controlled vocabulary shall be used The term and the term * identifier shall be used. * *

Adds new element(s) to the existing list * * @param color * Where applicable, the color can be specified An appropriate controlled vocabulary shall be used The term and the term * identifier shall be used * * @return * A reference to this Builder instance */ public Builder color(String... color) { for (String value : color) { this.color.add(value); } return this; } /** * Where applicable, the color can be specified An appropriate controlled vocabulary shall be used The term and the term * identifier shall be used. * *

Replaces the existing list with a new one containing elements from the Collection * * @param color * Where applicable, the color can be specified An appropriate controlled vocabulary shall be used The term and the term * identifier shall be used * * @return * A reference to this Builder instance */ public Builder color(Collection color) { this.color = new ArrayList<>(color); return this; } /** * Where applicable, the imprint can be specified as text. * *

Adds new element(s) to the existing list * * @param imprint * Where applicable, the imprint can be specified as text * * @return * A reference to this Builder instance */ public Builder imprint(String... imprint) { for (String value : imprint) { this.imprint.add(value); } return this; } /** * Where applicable, the imprint can be specified as text. * *

Replaces the existing list with a new one containing elements from the Collection * * @param imprint * Where applicable, the imprint can be specified as text * * @return * A reference to this Builder instance */ public Builder imprint(Collection imprint) { this.imprint = new ArrayList<>(imprint); return this; } /** * Where applicable, the image can be provided The format of the image attachment shall be specified by regional * implementations. * *

Adds new element(s) to the existing list * * @param image * Where applicable, the image can be provided The format of the image attachment shall be specified by regional * implementations * * @return * A reference to this Builder instance */ public Builder image(Attachment... image) { for (Attachment value : image) { this.image.add(value); } return this; } /** * Where applicable, the image can be provided The format of the image attachment shall be specified by regional * implementations. * *

Replaces the existing list with a new one containing elements from the Collection * * @param image * Where applicable, the image can be provided The format of the image attachment shall be specified by regional * implementations * * @return * A reference to this Builder instance */ public Builder image(Collection image) { this.image = new ArrayList<>(image); return this; } /** * Where applicable, the scoring can be specified An appropriate controlled vocabulary shall be used The term and the * term identifier shall be used. * * @param scoring * Where applicable, the scoring can be specified An appropriate controlled vocabulary shall be used The term and the * term identifier shall be used * * @return * A reference to this Builder instance */ public Builder scoring(CodeableConcept scoring) { this.scoring = scoring; return this; } /** * Build the {@link ProdCharacteristic} * * @return * An immutable object of type {@link ProdCharacteristic} * @throws IllegalStateException * if the current state cannot be built into a valid ProdCharacteristic per the base specification */ @Override public ProdCharacteristic build() { ProdCharacteristic prodCharacteristic = new ProdCharacteristic(this); if (validating) { validate(prodCharacteristic); } return prodCharacteristic; } protected void validate(ProdCharacteristic prodCharacteristic) { super.validate(prodCharacteristic); ValidationSupport.checkList(prodCharacteristic.color, "color", String.class); ValidationSupport.checkList(prodCharacteristic.imprint, "imprint", String.class); ValidationSupport.checkList(prodCharacteristic.image, "image", Attachment.class); ValidationSupport.requireValueOrChildren(prodCharacteristic); } protected Builder from(ProdCharacteristic prodCharacteristic) { super.from(prodCharacteristic); height = prodCharacteristic.height; width = prodCharacteristic.width; depth = prodCharacteristic.depth; weight = prodCharacteristic.weight; nominalVolume = prodCharacteristic.nominalVolume; externalDiameter = prodCharacteristic.externalDiameter; shape = prodCharacteristic.shape; color.addAll(prodCharacteristic.color); imprint.addAll(prodCharacteristic.imprint); image.addAll(prodCharacteristic.image); scoring = prodCharacteristic.scoring; return this; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy