no.nhn.schemas.reg.hprv2.WSArrayOfUtdanningsinstitusjonshistorikk Maven / Gradle / Ivy
package no.nhn.schemas.reg.hprv2;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
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 org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* Java class for ArrayOfUtdanningsinstitusjonshistorikk complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ArrayOfUtdanningsinstitusjonshistorikk">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Utdanningsinstitusjonshistorikk" type="{http://schemas.nhn.no/reg/HPRv2}Utdanningsinstitusjonshistorikk" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfUtdanningsinstitusjonshistorikk", propOrder = {
"utdanningsinstitusjonshistorikks"
})
public class WSArrayOfUtdanningsinstitusjonshistorikk
implements Equals, HashCode
{
@XmlElement(name = "Utdanningsinstitusjonshistorikk", nillable = true)
protected List utdanningsinstitusjonshistorikks;
/**
* Gets the value of the utdanningsinstitusjonshistorikks 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 utdanningsinstitusjonshistorikks property.
*
*
* For example, to add a new item, do as follows:
*
* getUtdanningsinstitusjonshistorikks().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link WSUtdanningsinstitusjonshistorikk }
*
*
*/
public List getUtdanningsinstitusjonshistorikks() {
if (utdanningsinstitusjonshistorikks == null) {
utdanningsinstitusjonshistorikks = new ArrayList();
}
return this.utdanningsinstitusjonshistorikks;
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = 1;
{
List theUtdanningsinstitusjonshistorikks;
theUtdanningsinstitusjonshistorikks = (((this.utdanningsinstitusjonshistorikks!= null)&&(!this.utdanningsinstitusjonshistorikks.isEmpty()))?this.getUtdanningsinstitusjonshistorikks():null);
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "utdanningsinstitusjonshistorikks", theUtdanningsinstitusjonshistorikks), currentHashCode, theUtdanningsinstitusjonshistorikks);
}
return currentHashCode;
}
public int hashCode() {
final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
return this.hashCode(null, strategy);
}
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) {
if (!(object instanceof WSArrayOfUtdanningsinstitusjonshistorikk)) {
return false;
}
if (this == object) {
return true;
}
final WSArrayOfUtdanningsinstitusjonshistorikk that = ((WSArrayOfUtdanningsinstitusjonshistorikk) object);
{
List lhsUtdanningsinstitusjonshistorikks;
lhsUtdanningsinstitusjonshistorikks = (((this.utdanningsinstitusjonshistorikks!= null)&&(!this.utdanningsinstitusjonshistorikks.isEmpty()))?this.getUtdanningsinstitusjonshistorikks():null);
List rhsUtdanningsinstitusjonshistorikks;
rhsUtdanningsinstitusjonshistorikks = (((that.utdanningsinstitusjonshistorikks!= null)&&(!that.utdanningsinstitusjonshistorikks.isEmpty()))?that.getUtdanningsinstitusjonshistorikks():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "utdanningsinstitusjonshistorikks", lhsUtdanningsinstitusjonshistorikks), LocatorUtils.property(thatLocator, "utdanningsinstitusjonshistorikks", rhsUtdanningsinstitusjonshistorikks), lhsUtdanningsinstitusjonshistorikks, rhsUtdanningsinstitusjonshistorikks)) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
public WSArrayOfUtdanningsinstitusjonshistorikk withUtdanningsinstitusjonshistorikks(WSUtdanningsinstitusjonshistorikk... values) {
if (values!= null) {
for (WSUtdanningsinstitusjonshistorikk value: values) {
getUtdanningsinstitusjonshistorikks().add(value);
}
}
return this;
}
public WSArrayOfUtdanningsinstitusjonshistorikk withUtdanningsinstitusjonshistorikks(Collection values) {
if (values!= null) {
getUtdanningsinstitusjonshistorikks().addAll(values);
}
return this;
}
}