All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
no.digipost.org.w3.xenc.ReferenceList Maven / Gradle / Ivy
//
// 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 no.digipost.org.w3.xenc;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
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;
import org.w3c.dom.Element;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice maxOccurs="unbounded">
* <element name="DataReference" type="{http://www.w3.org/2001/04/xmlenc#}ReferenceType"/>
* <element name="KeyReference" type="{http://www.w3.org/2001/04/xmlenc#}ReferenceType"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"dataReferencesAndKeyReferences"
})
@XmlRootElement(name = "ReferenceList")
public class ReferenceList implements Equals2, HashCode2, ToString2
{
@XmlElementRefs({
@XmlElementRef(name = "DataReference", namespace = "http://www.w3.org/2001/04/xmlenc#", type = JAXBElement.class, required = false),
@XmlElementRef(name = "KeyReference", namespace = "http://www.w3.org/2001/04/xmlenc#", type = JAXBElement.class, required = false)
})
@XmlAnyElement(lax = true)
protected List dataReferencesAndKeyReferences;
/**
* Default no-arg constructor
*
*/
public ReferenceList() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public ReferenceList(final List dataReferencesAndKeyReferences) {
this.dataReferencesAndKeyReferences = dataReferencesAndKeyReferences;
}
/**
* Gets the value of the dataReferencesAndKeyReferences property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the dataReferencesAndKeyReferences property.
*
*
* For example, to add a new item, do as follows:
*
* getDataReferencesAndKeyReferences().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Object }
* {@link JAXBElement }{@code <}{@link ReferenceType }{@code >}
* {@link JAXBElement }{@code <}{@link ReferenceType }{@code >}
* {@link Element }
*
*
*/
public List getDataReferencesAndKeyReferences() {
if (dataReferencesAndKeyReferences == null) {
dataReferencesAndKeyReferences = new ArrayList();
}
return this.dataReferencesAndKeyReferences;
}
public void setDataReferencesAndKeyReferences(List value) {
this.dataReferencesAndKeyReferences = null;
if (value!= null) {
List draftl = this.getDataReferencesAndKeyReferences();
draftl.addAll(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) {
{
List theDataReferencesAndKeyReferences;
theDataReferencesAndKeyReferences = (((this.dataReferencesAndKeyReferences!= null)&&(!this.dataReferencesAndKeyReferences.isEmpty()))?this.getDataReferencesAndKeyReferences():null);
strategy.appendField(locator, this, "dataReferencesAndKeyReferences", buffer, theDataReferencesAndKeyReferences, ((this.dataReferencesAndKeyReferences!= null)&&(!this.dataReferencesAndKeyReferences.isEmpty())));
}
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 ReferenceList that = ((ReferenceList) object);
{
List lhsDataReferencesAndKeyReferences;
lhsDataReferencesAndKeyReferences = (((this.dataReferencesAndKeyReferences!= null)&&(!this.dataReferencesAndKeyReferences.isEmpty()))?this.getDataReferencesAndKeyReferences():null);
List rhsDataReferencesAndKeyReferences;
rhsDataReferencesAndKeyReferences = (((that.dataReferencesAndKeyReferences!= null)&&(!that.dataReferencesAndKeyReferences.isEmpty()))?that.getDataReferencesAndKeyReferences():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "dataReferencesAndKeyReferences", lhsDataReferencesAndKeyReferences), LocatorUtils.property(thatLocator, "dataReferencesAndKeyReferences", rhsDataReferencesAndKeyReferences), lhsDataReferencesAndKeyReferences, rhsDataReferencesAndKeyReferences, ((this.dataReferencesAndKeyReferences!= null)&&(!this.dataReferencesAndKeyReferences.isEmpty())), ((that.dataReferencesAndKeyReferences!= null)&&(!that.dataReferencesAndKeyReferences.isEmpty())))) {
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;
{
List theDataReferencesAndKeyReferences;
theDataReferencesAndKeyReferences = (((this.dataReferencesAndKeyReferences!= null)&&(!this.dataReferencesAndKeyReferences.isEmpty()))?this.getDataReferencesAndKeyReferences():null);
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "dataReferencesAndKeyReferences", theDataReferencesAndKeyReferences), currentHashCode, theDataReferencesAndKeyReferences, ((this.dataReferencesAndKeyReferences!= null)&&(!this.dataReferencesAndKeyReferences.isEmpty())));
}
return currentHashCode;
}
@Override
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance();
return this.hashCode(null, strategy);
}
public ReferenceList withDataReferencesAndKeyReferences(Object... values) {
if (values!= null) {
for (Object value: values) {
getDataReferencesAndKeyReferences().add(value);
}
}
return this;
}
public ReferenceList withDataReferencesAndKeyReferences(Collection values) {
if (values!= null) {
getDataReferencesAndKeyReferences().addAll(values);
}
return this;
}
public ReferenceList withDataReferencesAndKeyReferences(List value) {
setDataReferencesAndKeyReferences(value);
return this;
}
}