All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.difi.meldingsutveksling.ks.svarut.DigitalAdresse 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.09.09 at 10:33:19 AM UTC 
//


package no.difi.meldingsutveksling.ks.svarut;

import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import com.kscs.util.jaxb.Buildable;
import com.kscs.util.jaxb.PropertyTree;
import com.kscs.util.jaxb.PropertyTreeUse;


/**
 * 

Java class for digitalAdresse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="digitalAdresse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "digitalAdresse") @XmlSeeAlso({ OrganisasjonDigitalAdresse.class, PersonDigitalAdresse.class }) public abstract class DigitalAdresse { /** * Copies all state of this object to a builder. This method is used by the {@link #copyOf} method and should not be called directly by client code. * * @param _other * A builder instance to which the state of this object will be copied. */ public<_B >void copyTo(final DigitalAdresse.Builder<_B> _other) { } public abstract<_B >DigitalAdresse.Builder<_B> newCopyBuilder(final _B _parentBuilder); public abstract DigitalAdresse.Builder newCopyBuilder(); /** * Copies all state of this object to a builder. This method is used by the {@link #copyOf} method and should not be called directly by client code. * * @param _other * A builder instance to which the state of this object will be copied. */ public<_B >void copyTo(final DigitalAdresse.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { } public abstract<_B >DigitalAdresse.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse); public abstract DigitalAdresse.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse); public static class Builder<_B >implements Buildable { protected final _B _parentBuilder; protected final DigitalAdresse _storedValue; public Builder(final _B _parentBuilder, final DigitalAdresse _other, final boolean _copy) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; } else { _storedValue = _other; } } else { _storedValue = null; } } public Builder(final _B _parentBuilder, final DigitalAdresse _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; } else { _storedValue = _other; } } else { _storedValue = null; } } public _B end() { return this._parentBuilder; } protected<_P extends DigitalAdresse >_P init(final _P _product) { return _product; } @Override public DigitalAdresse build() { return ((DigitalAdresse) _storedValue); } public DigitalAdresse.Builder<_B> copyOf(final DigitalAdresse _other) { _other.copyTo(this); return this; } public DigitalAdresse.Builder<_B> copyOf(final DigitalAdresse.Builder _other) { return copyOf(_other.build()); } } public static class Select extends DigitalAdresse.Selector { Select() { super(null, null, null); } public static DigitalAdresse.Select _root() { return new DigitalAdresse.Select(); } } public static class Selector , TParent > extends com.kscs.util.jaxb.Selector { public Selector(final TRoot root, final TParent parent, final String propertyName) { super(root, parent, propertyName); } @Override public Map buildChildren() { final Map products = new HashMap(); products.putAll(super.buildChildren()); return products; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy