no.difi.begrep.sdp.utvidelser.bevis.SDPAarligRepeterendePeriode 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 no.difi.begrep.sdp.utvidelser.bevis;
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.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 AarligRepeterendePeriode complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AarligRepeterendePeriode">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="start-aar" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="slutt-aar" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="fra" type="{http://begrep.difi.no/sdp/utvidelser/bevis}Maanedstidspunkt"/>
* <element name="til" type="{http://begrep.difi.no/sdp/utvidelser/bevis}Maanedstidspunkt"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AarligRepeterendePeriode", propOrder = {
"startAar",
"sluttAar",
"fra",
"til"
})
public class SDPAarligRepeterendePeriode implements Equals2, HashCode2, ToString2
{
@XmlElement(name = "start-aar")
protected Integer startAar;
@XmlElement(name = "slutt-aar")
protected Integer sluttAar;
@XmlElement(required = true)
protected SDPMaanedstidspunkt fra;
@XmlElement(required = true)
protected SDPMaanedstidspunkt til;
/**
* Default no-arg constructor
*
*/
public SDPAarligRepeterendePeriode() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public SDPAarligRepeterendePeriode(final Integer startAar, final Integer sluttAar, final SDPMaanedstidspunkt fra, final SDPMaanedstidspunkt til) {
this.startAar = startAar;
this.sluttAar = sluttAar;
this.fra = fra;
this.til = til;
}
/**
* Gets the value of the startAar property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getStartAar() {
return startAar;
}
/**
* Sets the value of the startAar property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setStartAar(Integer value) {
this.startAar = value;
}
/**
* Gets the value of the sluttAar property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSluttAar() {
return sluttAar;
}
/**
* Sets the value of the sluttAar property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSluttAar(Integer value) {
this.sluttAar = value;
}
/**
* Gets the value of the fra property.
*
* @return
* possible object is
* {@link SDPMaanedstidspunkt }
*
*/
public SDPMaanedstidspunkt getFra() {
return fra;
}
/**
* Sets the value of the fra property.
*
* @param value
* allowed object is
* {@link SDPMaanedstidspunkt }
*
*/
public void setFra(SDPMaanedstidspunkt value) {
this.fra = value;
}
/**
* Gets the value of the til property.
*
* @return
* possible object is
* {@link SDPMaanedstidspunkt }
*
*/
public SDPMaanedstidspunkt getTil() {
return til;
}
/**
* Sets the value of the til property.
*
* @param value
* allowed object is
* {@link SDPMaanedstidspunkt }
*
*/
public void setTil(SDPMaanedstidspunkt value) {
this.til = 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) {
{
Integer theStartAar;
theStartAar = this.getStartAar();
strategy.appendField(locator, this, "startAar", buffer, theStartAar, (this.startAar!= null));
}
{
Integer theSluttAar;
theSluttAar = this.getSluttAar();
strategy.appendField(locator, this, "sluttAar", buffer, theSluttAar, (this.sluttAar!= null));
}
{
SDPMaanedstidspunkt theFra;
theFra = this.getFra();
strategy.appendField(locator, this, "fra", buffer, theFra, (this.fra!= null));
}
{
SDPMaanedstidspunkt theTil;
theTil = this.getTil();
strategy.appendField(locator, this, "til", buffer, theTil, (this.til!= 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 SDPAarligRepeterendePeriode that = ((SDPAarligRepeterendePeriode) object);
{
Integer lhsStartAar;
lhsStartAar = this.getStartAar();
Integer rhsStartAar;
rhsStartAar = that.getStartAar();
if (!strategy.equals(LocatorUtils.property(thisLocator, "startAar", lhsStartAar), LocatorUtils.property(thatLocator, "startAar", rhsStartAar), lhsStartAar, rhsStartAar, (this.startAar!= null), (that.startAar!= null))) {
return false;
}
}
{
Integer lhsSluttAar;
lhsSluttAar = this.getSluttAar();
Integer rhsSluttAar;
rhsSluttAar = that.getSluttAar();
if (!strategy.equals(LocatorUtils.property(thisLocator, "sluttAar", lhsSluttAar), LocatorUtils.property(thatLocator, "sluttAar", rhsSluttAar), lhsSluttAar, rhsSluttAar, (this.sluttAar!= null), (that.sluttAar!= null))) {
return false;
}
}
{
SDPMaanedstidspunkt lhsFra;
lhsFra = this.getFra();
SDPMaanedstidspunkt rhsFra;
rhsFra = that.getFra();
if (!strategy.equals(LocatorUtils.property(thisLocator, "fra", lhsFra), LocatorUtils.property(thatLocator, "fra", rhsFra), lhsFra, rhsFra, (this.fra!= null), (that.fra!= null))) {
return false;
}
}
{
SDPMaanedstidspunkt lhsTil;
lhsTil = this.getTil();
SDPMaanedstidspunkt rhsTil;
rhsTil = that.getTil();
if (!strategy.equals(LocatorUtils.property(thisLocator, "til", lhsTil), LocatorUtils.property(thatLocator, "til", rhsTil), lhsTil, rhsTil, (this.til!= null), (that.til!= 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;
{
Integer theStartAar;
theStartAar = this.getStartAar();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "startAar", theStartAar), currentHashCode, theStartAar, (this.startAar!= null));
}
{
Integer theSluttAar;
theSluttAar = this.getSluttAar();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "sluttAar", theSluttAar), currentHashCode, theSluttAar, (this.sluttAar!= null));
}
{
SDPMaanedstidspunkt theFra;
theFra = this.getFra();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "fra", theFra), currentHashCode, theFra, (this.fra!= null));
}
{
SDPMaanedstidspunkt theTil;
theTil = this.getTil();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "til", theTil), currentHashCode, theTil, (this.til!= null));
}
return currentHashCode;
}
@Override
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance();
return this.hashCode(null, strategy);
}
public SDPAarligRepeterendePeriode withStartAar(Integer value) {
setStartAar(value);
return this;
}
public SDPAarligRepeterendePeriode withSluttAar(Integer value) {
setSluttAar(value);
return this;
}
public SDPAarligRepeterendePeriode withFra(SDPMaanedstidspunkt value) {
setFra(value);
return this;
}
public SDPAarligRepeterendePeriode withTil(SDPMaanedstidspunkt value) {
setTil(value);
return this;
}
}