org.hl7.elm.r1.CodeDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elm Show documentation
Show all versions of elm Show documentation
The elm library for the Clinical Quality Language Java reference implementation
//
// 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.08.24 at 01:22:35 PM MDT
//
package org.hl7.elm.r1;
import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.hl7.cql_annotations.r1.CqlToElmBase;
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 CodeDef type defines a code identifier that can then be used to reference single codes anywhere within an expression.
*
* Java class for CodeDef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CodeDef">
* <complexContent>
* <extension base="{urn:hl7-org:elm:r1}Element">
* <sequence>
* <element name="codeSystem" type="{urn:hl7-org:elm:r1}CodeSystemRef" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="display" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="accessLevel" type="{urn:hl7-org:elm:r1}AccessModifier" default="Public" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CodeDef", namespace = "urn:hl7-org:elm:r1", propOrder = {
"codeSystem"
})
public class CodeDef
extends Element
implements Equals2, HashCode2, ToString2
{
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected CodeSystemRef codeSystem;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "id", required = true)
protected String id;
@XmlAttribute(name = "display")
protected String display;
@XmlAttribute(name = "accessLevel")
protected AccessModifier accessLevel;
/**
* Gets the value of the codeSystem property.
*
* @return
* possible object is
* {@link CodeSystemRef }
*
*/
public CodeSystemRef getCodeSystem() {
return codeSystem;
}
/**
* Sets the value of the codeSystem property.
*
* @param value
* allowed object is
* {@link CodeSystemRef }
*
*/
public void setCodeSystem(CodeSystemRef value) {
this.codeSystem = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the display property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplay() {
return display;
}
/**
* Sets the value of the display property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplay(String value) {
this.display = value;
}
/**
* Gets the value of the accessLevel property.
*
* @return
* possible object is
* {@link AccessModifier }
*
*/
public AccessModifier getAccessLevel() {
if (accessLevel == null) {
return AccessModifier.PUBLIC;
} else {
return accessLevel;
}
}
/**
* Sets the value of the accessLevel property.
*
* @param value
* allowed object is
* {@link AccessModifier }
*
*/
public void setAccessLevel(AccessModifier value) {
this.accessLevel = value;
}
public CodeDef withCodeSystem(CodeSystemRef value) {
setCodeSystem(value);
return this;
}
public CodeDef withName(String value) {
setName(value);
return this;
}
public CodeDef withId(String value) {
setId(value);
return this;
}
public CodeDef withDisplay(String value) {
setDisplay(value);
return this;
}
public CodeDef withAccessLevel(AccessModifier value) {
setAccessLevel(value);
return this;
}
@Override
public CodeDef withAnnotation(CqlToElmBase... values) {
if (values!= null) {
for (CqlToElmBase value: values) {
getAnnotation().add(value);
}
}
return this;
}
@Override
public CodeDef withAnnotation(Collection values) {
if (values!= null) {
getAnnotation().addAll(values);
}
return this;
}
@Override
public CodeDef withResultTypeSpecifier(TypeSpecifier value) {
setResultTypeSpecifier(value);
return this;
}
@Override
public CodeDef withLocalId(String value) {
setLocalId(value);
return this;
}
@Override
public CodeDef withLocator(String value) {
setLocator(value);
return this;
}
@Override
public CodeDef 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 CodeDef that = ((CodeDef) object);
{
CodeSystemRef lhsCodeSystem;
lhsCodeSystem = this.getCodeSystem();
CodeSystemRef rhsCodeSystem;
rhsCodeSystem = that.getCodeSystem();
if (!strategy.equals(LocatorUtils.property(thisLocator, "codeSystem", lhsCodeSystem), LocatorUtils.property(thatLocator, "codeSystem", rhsCodeSystem), lhsCodeSystem, rhsCodeSystem, (this.codeSystem!= null), (that.codeSystem!= null))) {
return false;
}
}
{
String lhsName;
lhsName = this.getName();
String rhsName;
rhsName = that.getName();
if (!strategy.equals(LocatorUtils.property(thisLocator, "name", lhsName), LocatorUtils.property(thatLocator, "name", rhsName), lhsName, rhsName, (this.name!= null), (that.name!= null))) {
return false;
}
}
{
String lhsId;
lhsId = this.getId();
String rhsId;
rhsId = that.getId();
if (!strategy.equals(LocatorUtils.property(thisLocator, "id", lhsId), LocatorUtils.property(thatLocator, "id", rhsId), lhsId, rhsId, (this.id!= null), (that.id!= null))) {
return false;
}
}
{
String lhsDisplay;
lhsDisplay = this.getDisplay();
String rhsDisplay;
rhsDisplay = that.getDisplay();
if (!strategy.equals(LocatorUtils.property(thisLocator, "display", lhsDisplay), LocatorUtils.property(thatLocator, "display", rhsDisplay), lhsDisplay, rhsDisplay, (this.display!= null), (that.display!= null))) {
return false;
}
}
{
AccessModifier lhsAccessLevel;
lhsAccessLevel = this.getAccessLevel();
AccessModifier rhsAccessLevel;
rhsAccessLevel = that.getAccessLevel();
if (!strategy.equals(LocatorUtils.property(thisLocator, "accessLevel", lhsAccessLevel), LocatorUtils.property(thatLocator, "accessLevel", rhsAccessLevel), lhsAccessLevel, rhsAccessLevel, (this.accessLevel!= null), (that.accessLevel!= 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);
{
CodeSystemRef theCodeSystem;
theCodeSystem = this.getCodeSystem();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "codeSystem", theCodeSystem), currentHashCode, theCodeSystem, (this.codeSystem!= null));
}
{
String theName;
theName = this.getName();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "name", theName), currentHashCode, theName, (this.name!= null));
}
{
String theId;
theId = this.getId();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "id", theId), currentHashCode, theId, (this.id!= null));
}
{
String theDisplay;
theDisplay = this.getDisplay();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "display", theDisplay), currentHashCode, theDisplay, (this.display!= null));
}
{
AccessModifier theAccessLevel;
theAccessLevel = this.getAccessLevel();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "accessLevel", theAccessLevel), currentHashCode, theAccessLevel, (this.accessLevel!= 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);
{
CodeSystemRef theCodeSystem;
theCodeSystem = this.getCodeSystem();
strategy.appendField(locator, this, "codeSystem", buffer, theCodeSystem, (this.codeSystem!= null));
}
{
String theName;
theName = this.getName();
strategy.appendField(locator, this, "name", buffer, theName, (this.name!= null));
}
{
String theId;
theId = this.getId();
strategy.appendField(locator, this, "id", buffer, theId, (this.id!= null));
}
{
String theDisplay;
theDisplay = this.getDisplay();
strategy.appendField(locator, this, "display", buffer, theDisplay, (this.display!= null));
}
{
AccessModifier theAccessLevel;
theAccessLevel = this.getAccessLevel();
strategy.appendField(locator, this, "accessLevel", buffer, theAccessLevel, (this.accessLevel!= null));
}
return buffer;
}
}