org.etsi.uri._01903.v1_3.ObjectIdentifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdp-xsd Show documentation
Show all versions of sdp-xsd Show documentation
XSDer og genererte JAXB-klasser
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.11.06 at 01:54:33 PM UTC
//
package org.etsi.uri._01903.v1_3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
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;
/**
* Java class for ObjectIdentifierType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ObjectIdentifierType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Identifier" type="{http://uri.etsi.org/01903/v1.3.2#}IdentifierType"/>
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DocumentationReferences" type="{http://uri.etsi.org/01903/v1.3.2#}DocumentationReferencesType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ObjectIdentifierType", propOrder = {
"identifier",
"description",
"documentationReferences"
})
@XmlRootElement(name = "ObjectIdentifier")
public class ObjectIdentifier implements Equals2, HashCode2, ToString2
{
@XmlElement(name = "Identifier", required = true)
protected IdentifierType identifier;
@XmlElement(name = "Description")
protected String description;
@XmlElement(name = "DocumentationReferences")
protected DocumentationReferencesType documentationReferences;
/**
* Default no-arg constructor
*
*/
public ObjectIdentifier() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public ObjectIdentifier(final IdentifierType identifier, final String description, final DocumentationReferencesType documentationReferences) {
this.identifier = identifier;
this.description = description;
this.documentationReferences = documentationReferences;
}
/**
* Gets the value of the identifier property.
*
* @return
* possible object is
* {@link IdentifierType }
*
*/
public IdentifierType getIdentifier() {
return identifier;
}
/**
* Sets the value of the identifier property.
*
* @param value
* allowed object is
* {@link IdentifierType }
*
*/
public void setIdentifier(IdentifierType value) {
this.identifier = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the documentationReferences property.
*
* @return
* possible object is
* {@link DocumentationReferencesType }
*
*/
public DocumentationReferencesType getDocumentationReferences() {
return documentationReferences;
}
/**
* Sets the value of the documentationReferences property.
*
* @param value
* allowed object is
* {@link DocumentationReferencesType }
*
*/
public void setDocumentationReferences(DocumentationReferencesType value) {
this.documentationReferences = value;
}
@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) {
{
IdentifierType theIdentifier;
theIdentifier = this.getIdentifier();
strategy.appendField(locator, this, "identifier", buffer, theIdentifier, (this.identifier!= null));
}
{
String theDescription;
theDescription = this.getDescription();
strategy.appendField(locator, this, "description", buffer, theDescription, (this.description!= null));
}
{
DocumentationReferencesType theDocumentationReferences;
theDocumentationReferences = this.getDocumentationReferences();
strategy.appendField(locator, this, "documentationReferences", buffer, theDocumentationReferences, (this.documentationReferences!= null));
}
return buffer;
}
@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;
}
final ObjectIdentifier that = ((ObjectIdentifier) object);
{
IdentifierType lhsIdentifier;
lhsIdentifier = this.getIdentifier();
IdentifierType rhsIdentifier;
rhsIdentifier = that.getIdentifier();
if (!strategy.equals(LocatorUtils.property(thisLocator, "identifier", lhsIdentifier), LocatorUtils.property(thatLocator, "identifier", rhsIdentifier), lhsIdentifier, rhsIdentifier, (this.identifier!= null), (that.identifier!= null))) {
return false;
}
}
{
String lhsDescription;
lhsDescription = this.getDescription();
String rhsDescription;
rhsDescription = that.getDescription();
if (!strategy.equals(LocatorUtils.property(thisLocator, "description", lhsDescription), LocatorUtils.property(thatLocator, "description", rhsDescription), lhsDescription, rhsDescription, (this.description!= null), (that.description!= null))) {
return false;
}
}
{
DocumentationReferencesType lhsDocumentationReferences;
lhsDocumentationReferences = this.getDocumentationReferences();
DocumentationReferencesType rhsDocumentationReferences;
rhsDocumentationReferences = that.getDocumentationReferences();
if (!strategy.equals(LocatorUtils.property(thisLocator, "documentationReferences", lhsDocumentationReferences), LocatorUtils.property(thatLocator, "documentationReferences", rhsDocumentationReferences), lhsDocumentationReferences, rhsDocumentationReferences, (this.documentationReferences!= null), (that.documentationReferences!= 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 = 1;
{
IdentifierType theIdentifier;
theIdentifier = this.getIdentifier();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "identifier", theIdentifier), currentHashCode, theIdentifier, (this.identifier!= null));
}
{
String theDescription;
theDescription = this.getDescription();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "description", theDescription), currentHashCode, theDescription, (this.description!= null));
}
{
DocumentationReferencesType theDocumentationReferences;
theDocumentationReferences = this.getDocumentationReferences();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "documentationReferences", theDocumentationReferences), currentHashCode, theDocumentationReferences, (this.documentationReferences!= null));
}
return currentHashCode;
}
@Override
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance();
return this.hashCode(null, strategy);
}
public ObjectIdentifier withIdentifier(IdentifierType value) {
setIdentifier(value);
return this;
}
public ObjectIdentifier withDescription(String value) {
setDescription(value);
return this;
}
public ObjectIdentifier withDocumentationReferences(DocumentationReferencesType value) {
setDocumentationReferences(value);
return this;
}
}