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