no.nhn.schemas.reg.hprv2.WSArrayOfSpesialitet 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 ArrayOfSpesialitet complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ArrayOfSpesialitet">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Spesialitet" type="{http://schemas.nhn.no/reg/HPRv2}Spesialitet" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfSpesialitet", propOrder = {
"spesialitets"
})
public class WSArrayOfSpesialitet
implements Equals, HashCode
{
@XmlElement(name = "Spesialitet", nillable = true)
protected List spesialitets;
/**
* Gets the value of the spesialitets 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 spesialitets property.
*
*
* For example, to add a new item, do as follows:
*
* getSpesialitets().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link WSSpesialitet }
*
*
*/
public List getSpesialitets() {
if (spesialitets == null) {
spesialitets = new ArrayList();
}
return this.spesialitets;
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = 1;
{
List theSpesialitets;
theSpesialitets = (((this.spesialitets!= null)&&(!this.spesialitets.isEmpty()))?this.getSpesialitets():null);
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "spesialitets", theSpesialitets), currentHashCode, theSpesialitets);
}
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 WSArrayOfSpesialitet)) {
return false;
}
if (this == object) {
return true;
}
final WSArrayOfSpesialitet that = ((WSArrayOfSpesialitet) object);
{
List lhsSpesialitets;
lhsSpesialitets = (((this.spesialitets!= null)&&(!this.spesialitets.isEmpty()))?this.getSpesialitets():null);
List rhsSpesialitets;
rhsSpesialitets = (((that.spesialitets!= null)&&(!that.spesialitets.isEmpty()))?that.getSpesialitets():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "spesialitets", lhsSpesialitets), LocatorUtils.property(thatLocator, "spesialitets", rhsSpesialitets), lhsSpesialitets, rhsSpesialitets)) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
public WSArrayOfSpesialitet withSpesialitets(WSSpesialitet... values) {
if (values!= null) {
for (WSSpesialitet value: values) {
getSpesialitets().add(value);
}
}
return this;
}
public WSArrayOfSpesialitet withSpesialitets(Collection values) {
if (values!= null) {
getSpesialitets().addAll(values);
}
return this;
}
}