
org.cqframework.cql.elm.execution.Time Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.4.0-b180830.0438
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.07.14 at 09:08:04 AM MDT
//
package org.cqframework.cql.elm.execution;
import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* The Time operator constructs a time value from the given components.
*
* At least one component must be specified, and no component may be specified at a precision below an unspecified precision. For example, minute may be null, but if it is, second, and millisecond must all be null as well.
*
* Although the milliseconds are specified with a separate component, seconds and milliseconds are combined and represented as a [.id]#Decimal# for the purposes of comparison.
*
* Java class for Time complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Time">
* <complexContent>
* <extension base="{urn:hl7-org:elm:r1}OperatorExpression">
* <sequence>
* <element name="hour" type="{urn:hl7-org:elm:r1}Expression"/>
* <element name="minute" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
* <element name="second" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
* <element name="millisecond" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Time", namespace = "urn:hl7-org:elm:r1", propOrder = {
"hour",
"minute",
"second",
"millisecond"
})
public class Time
extends OperatorExpression
implements Equals2, HashCode2, ToString2
{
@XmlElement(namespace = "urn:hl7-org:elm:r1", required = true)
protected Expression hour;
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected Expression minute;
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected Expression second;
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected Expression millisecond;
/**
* Gets the value of the hour property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getHour() {
return hour;
}
/**
* Sets the value of the hour property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setHour(Expression value) {
this.hour = value;
}
/**
* Gets the value of the minute property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getMinute() {
return minute;
}
/**
* Sets the value of the minute property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setMinute(Expression value) {
this.minute = value;
}
/**
* Gets the value of the second property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getSecond() {
return second;
}
/**
* Sets the value of the second property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setSecond(Expression value) {
this.second = value;
}
/**
* Gets the value of the millisecond property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getMillisecond() {
return millisecond;
}
/**
* Sets the value of the millisecond property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setMillisecond(Expression value) {
this.millisecond = value;
}
public Time withHour(Expression value) {
setHour(value);
return this;
}
public Time withMinute(Expression value) {
setMinute(value);
return this;
}
public Time withSecond(Expression value) {
setSecond(value);
return this;
}
public Time withMillisecond(Expression value) {
setMillisecond(value);
return this;
}
@Override
public Time withSignature(TypeSpecifier... values) {
if (values!= null) {
for (TypeSpecifier value: values) {
getSignature().add(value);
}
}
return this;
}
@Override
public Time withSignature(Collection values) {
if (values!= null) {
getSignature().addAll(values);
}
return this;
}
@Override
public Time withAnnotation(CqlToElmBase... values) {
if (values!= null) {
for (CqlToElmBase value: values) {
getAnnotation().add(value);
}
}
return this;
}
@Override
public Time withAnnotation(Collection values) {
if (values!= null) {
getAnnotation().addAll(values);
}
return this;
}
@Override
public Time withResultTypeSpecifier(TypeSpecifier value) {
setResultTypeSpecifier(value);
return this;
}
@Override
public Time withLocalId(String value) {
setLocalId(value);
return this;
}
@Override
public Time withLocator(String value) {
setLocator(value);
return this;
}
@Override
public Time withResultTypeName(QName value) {
setResultTypeName(value);
return this;
}
@Override
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
}
if (this == object) {
return true;
}
if (!super.equals(thisLocator, thatLocator, object, strategy)) {
return false;
}
final Time that = ((Time) object);
{
Expression lhsHour;
lhsHour = this.getHour();
Expression rhsHour;
rhsHour = that.getHour();
if (!strategy.equals(LocatorUtils.property(thisLocator, "hour", lhsHour), LocatorUtils.property(thatLocator, "hour", rhsHour), lhsHour, rhsHour, (this.hour!= null), (that.hour!= null))) {
return false;
}
}
{
Expression lhsMinute;
lhsMinute = this.getMinute();
Expression rhsMinute;
rhsMinute = that.getMinute();
if (!strategy.equals(LocatorUtils.property(thisLocator, "minute", lhsMinute), LocatorUtils.property(thatLocator, "minute", rhsMinute), lhsMinute, rhsMinute, (this.minute!= null), (that.minute!= null))) {
return false;
}
}
{
Expression lhsSecond;
lhsSecond = this.getSecond();
Expression rhsSecond;
rhsSecond = that.getSecond();
if (!strategy.equals(LocatorUtils.property(thisLocator, "second", lhsSecond), LocatorUtils.property(thatLocator, "second", rhsSecond), lhsSecond, rhsSecond, (this.second!= null), (that.second!= null))) {
return false;
}
}
{
Expression lhsMillisecond;
lhsMillisecond = this.getMillisecond();
Expression rhsMillisecond;
rhsMillisecond = that.getMillisecond();
if (!strategy.equals(LocatorUtils.property(thisLocator, "millisecond", lhsMillisecond), LocatorUtils.property(thatLocator, "millisecond", rhsMillisecond), lhsMillisecond, rhsMillisecond, (this.millisecond!= null), (that.millisecond!= null))) {
return false;
}
}
return true;
}
@Override
public boolean equals(Object object) {
final EqualsStrategy2 strategy = JAXBEqualsStrategy.getInstance();
return equals(null, null, object, strategy);
}
@Override
public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) {
int currentHashCode = super.hashCode(locator, strategy);
{
Expression theHour;
theHour = this.getHour();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "hour", theHour), currentHashCode, theHour, (this.hour!= null));
}
{
Expression theMinute;
theMinute = this.getMinute();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "minute", theMinute), currentHashCode, theMinute, (this.minute!= null));
}
{
Expression theSecond;
theSecond = this.getSecond();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "second", theSecond), currentHashCode, theSecond, (this.second!= null));
}
{
Expression theMillisecond;
theMillisecond = this.getMillisecond();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "millisecond", theMillisecond), currentHashCode, theMillisecond, (this.millisecond!= null));
}
return currentHashCode;
}
@Override
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance();
return this.hashCode(null, strategy);
}
@Override
public String toString() {
final ToStringStrategy2 strategy = JAXBToStringStrategy.getInstance();
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
@Override
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
@Override
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
super.appendFields(locator, buffer, strategy);
{
Expression theHour;
theHour = this.getHour();
strategy.appendField(locator, this, "hour", buffer, theHour, (this.hour!= null));
}
{
Expression theMinute;
theMinute = this.getMinute();
strategy.appendField(locator, this, "minute", buffer, theMinute, (this.minute!= null));
}
{
Expression theSecond;
theSecond = this.getSecond();
strategy.appendField(locator, this, "second", buffer, theSecond, (this.second!= null));
}
{
Expression theMillisecond;
theMillisecond = this.getMillisecond();
strategy.appendField(locator, this, "millisecond", buffer, theMillisecond, (this.millisecond!= null));
}
return buffer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy