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

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

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

package com.ibm.fhir.model.type;

import java.util.Collection;
import java.util.Objects;

import javax.annotation.Generated;

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

/**
 * A time period defined by a start and end date and optionally time.
 */
@Constraint(
    id = "per-1",
    level = "Rule",
    location = "(base)",
    description = "If present, start SHALL have a lower value than end",
    expression = "start.hasValue().not() or end.hasValue().not() or (start <= end)"
)
@Generated("com.ibm.fhir.tools.CodeGenerator")
public class Period extends Element {
    @Summary
    private final DateTime start;
    @Summary
    private final DateTime end;

    private Period(Builder builder) {
        super(builder);
        start = builder.start;
        end = builder.end;
    }

    /**
     * The start of the period. The boundary is inclusive.
     * 
     * @return
     *     An immutable object of type {@link DateTime} that may be null.
     */
    public DateTime getStart() {
        return start;
    }

    /**
     * The end of the period. If the end of the period is missing, it means no end was known or planned at the time the 
     * instance was created. The start may be in the past, and the end date in the future, which means that period is 
     * expected/planned to end at that time.
     * 
     * @return
     *     An immutable object of type {@link DateTime} that may be null.
     */
    public DateTime getEnd() {
        return end;
    }

    @Override
    public boolean hasChildren() {
        return super.hasChildren() || 
            (start != null) || 
            (end != 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(start, "start", visitor);
                accept(end, "end", 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;
        }
        Period other = (Period) obj;
        return Objects.equals(id, other.id) && 
            Objects.equals(extension, other.extension) && 
            Objects.equals(start, other.start) && 
            Objects.equals(end, other.end);
    }

    @Override
    public int hashCode() {
        int result = hashCode;
        if (result == 0) {
            result = Objects.hash(id, 
                extension, 
                start, 
                end);
            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 Element.Builder {
        private DateTime start;
        private DateTime end;

        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); } /** * The start of the period. The boundary is inclusive. * * @param start * Starting time with inclusive boundary * * @return * A reference to this Builder instance */ public Builder start(DateTime start) { this.start = start; return this; } /** * The end of the period. If the end of the period is missing, it means no end was known or planned at the time the * instance was created. The start may be in the past, and the end date in the future, which means that period is * expected/planned to end at that time. * * @param end * End time with inclusive boundary, if not ongoing * * @return * A reference to this Builder instance */ public Builder end(DateTime end) { this.end = end; return this; } /** * Build the {@link Period} * * @return * An immutable object of type {@link Period} * @throws IllegalStateException * if the current state cannot be built into a valid Period per the base specification */ @Override public Period build() { Period period = new Period(this); if (validating) { validate(period); } return period; } protected void validate(Period period) { super.validate(period); ValidationSupport.requireValueOrChildren(period); } protected Builder from(Period period) { super.from(period); start = period.start; end = period.end; return this; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy