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

no.ks.fiks.arkiv.v1.arkivstruktur.minimum.KlassifikasjonssystemMinimum Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.6 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.06.23 at 10:32:49 AM CEST 
//


package no.ks.fiks.arkiv.v1.arkivstruktur.minimum;

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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.kscs.util.jaxb.Buildable;
import com.kscs.util.jaxb.PropertyTree;
import com.kscs.util.jaxb.PropertyTreeUse;
import no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Klassifikasjonstype;


/**
 * 

Java class for klassifikasjonssystemMinimum complex type. * *

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

 * <complexType name="klassifikasjonssystemMinimum">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="klassifikasjonssystemID" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}klassifikasjonssystemID"/>
 *         <element name="klassifikasjonstype" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}klassifikasjonstype" minOccurs="0"/>
 *         <element name="tittel" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}tittel"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "klassifikasjonssystemMinimum", propOrder = { "klassifikasjonssystemID", "klassifikasjonstype", "tittel" }) public class KlassifikasjonssystemMinimum { @XmlElement(required = true) protected String klassifikasjonssystemID; protected Klassifikasjonstype klassifikasjonstype; @XmlElement(required = true) protected String tittel; /** * Gets the value of the klassifikasjonssystemID property. * * @return * possible object is * {@link String } * */ public String getKlassifikasjonssystemID() { return klassifikasjonssystemID; } /** * Sets the value of the klassifikasjonssystemID property. * * @param value * allowed object is * {@link String } * */ public void setKlassifikasjonssystemID(String value) { this.klassifikasjonssystemID = value; } /** * Gets the value of the klassifikasjonstype property. * * @return * possible object is * {@link Klassifikasjonstype } * */ public Klassifikasjonstype getKlassifikasjonstype() { return klassifikasjonstype; } /** * Sets the value of the klassifikasjonstype property. * * @param value * allowed object is * {@link Klassifikasjonstype } * */ public void setKlassifikasjonstype(Klassifikasjonstype value) { this.klassifikasjonstype = value; } /** * Gets the value of the tittel property. * * @return * possible object is * {@link String } * */ public String getTittel() { return tittel; } /** * Sets the value of the tittel property. * * @param value * allowed object is * {@link String } * */ public void setTittel(String value) { this.tittel = value; } /** * 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 KlassifikasjonssystemMinimum.Builder<_B> _other) { _other.klassifikasjonssystemID = this.klassifikasjonssystemID; _other.klassifikasjonstype = ((this.klassifikasjonstype == null)?null:this.klassifikasjonstype.newCopyBuilder(_other)); _other.tittel = this.tittel; } public<_B >KlassifikasjonssystemMinimum.Builder<_B> newCopyBuilder(final _B _parentBuilder) { return new KlassifikasjonssystemMinimum.Builder<_B>(_parentBuilder, this, true); } public KlassifikasjonssystemMinimum.Builder newCopyBuilder() { return newCopyBuilder(null); } public static KlassifikasjonssystemMinimum.Builder builder() { return new KlassifikasjonssystemMinimum.Builder(null, null, false); } public static<_B >KlassifikasjonssystemMinimum.Builder<_B> copyOf(final KlassifikasjonssystemMinimum _other) { final KlassifikasjonssystemMinimum.Builder<_B> _newBuilder = new KlassifikasjonssystemMinimum.Builder<_B>(null, null, false); _other.copyTo(_newBuilder); return _newBuilder; } /** * 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 KlassifikasjonssystemMinimum.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final PropertyTree klassifikasjonssystemIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonssystemID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonssystemIDPropertyTree!= null):((klassifikasjonssystemIDPropertyTree == null)||(!klassifikasjonssystemIDPropertyTree.isLeaf())))) { _other.klassifikasjonssystemID = this.klassifikasjonssystemID; } final PropertyTree klassifikasjonstypePropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonstype")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonstypePropertyTree!= null):((klassifikasjonstypePropertyTree == null)||(!klassifikasjonstypePropertyTree.isLeaf())))) { _other.klassifikasjonstype = ((this.klassifikasjonstype == null)?null:this.klassifikasjonstype.newCopyBuilder(_other, klassifikasjonstypePropertyTree, _propertyTreeUse)); } final PropertyTree tittelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("tittel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(tittelPropertyTree!= null):((tittelPropertyTree == null)||(!tittelPropertyTree.isLeaf())))) { _other.tittel = this.tittel; } } public<_B >KlassifikasjonssystemMinimum.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return new KlassifikasjonssystemMinimum.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse); } public KlassifikasjonssystemMinimum.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return newCopyBuilder(null, _propertyTree, _propertyTreeUse); } public static<_B >KlassifikasjonssystemMinimum.Builder<_B> copyOf(final KlassifikasjonssystemMinimum _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final KlassifikasjonssystemMinimum.Builder<_B> _newBuilder = new KlassifikasjonssystemMinimum.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static KlassifikasjonssystemMinimum.Builder copyExcept(final KlassifikasjonssystemMinimum _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static KlassifikasjonssystemMinimum.Builder copyOnly(final KlassifikasjonssystemMinimum _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static class Builder<_B >implements Buildable { protected final _B _parentBuilder; protected final KlassifikasjonssystemMinimum _storedValue; private String klassifikasjonssystemID; private Klassifikasjonstype.Builder> klassifikasjonstype; private String tittel; public Builder(final _B _parentBuilder, final KlassifikasjonssystemMinimum _other, final boolean _copy) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; this.klassifikasjonssystemID = _other.klassifikasjonssystemID; this.klassifikasjonstype = ((_other.klassifikasjonstype == null)?null:_other.klassifikasjonstype.newCopyBuilder(this)); this.tittel = _other.tittel; } else { _storedValue = _other; } } else { _storedValue = null; } } public Builder(final _B _parentBuilder, final KlassifikasjonssystemMinimum _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; final PropertyTree klassifikasjonssystemIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonssystemID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonssystemIDPropertyTree!= null):((klassifikasjonssystemIDPropertyTree == null)||(!klassifikasjonssystemIDPropertyTree.isLeaf())))) { this.klassifikasjonssystemID = _other.klassifikasjonssystemID; } final PropertyTree klassifikasjonstypePropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonstype")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonstypePropertyTree!= null):((klassifikasjonstypePropertyTree == null)||(!klassifikasjonstypePropertyTree.isLeaf())))) { this.klassifikasjonstype = ((_other.klassifikasjonstype == null)?null:_other.klassifikasjonstype.newCopyBuilder(this, klassifikasjonstypePropertyTree, _propertyTreeUse)); } final PropertyTree tittelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("tittel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(tittelPropertyTree!= null):((tittelPropertyTree == null)||(!tittelPropertyTree.isLeaf())))) { this.tittel = _other.tittel; } } else { _storedValue = _other; } } else { _storedValue = null; } } public _B end() { return this._parentBuilder; } protected<_P extends KlassifikasjonssystemMinimum >_P init(final _P _product) { _product.klassifikasjonssystemID = this.klassifikasjonssystemID; _product.klassifikasjonstype = ((this.klassifikasjonstype == null)?null:this.klassifikasjonstype.build()); _product.tittel = this.tittel; return _product; } /** * Sets the new value of "klassifikasjonssystemID" (any previous value will be * replaced) * * @param klassifikasjonssystemID * New value of the "klassifikasjonssystemID" property. */ public KlassifikasjonssystemMinimum.Builder<_B> withKlassifikasjonssystemID(final String klassifikasjonssystemID) { this.klassifikasjonssystemID = klassifikasjonssystemID; return this; } /** * Sets the new value of "klassifikasjonstype" (any previous value will be * replaced) * * @param klassifikasjonstype * New value of the "klassifikasjonstype" property. */ public KlassifikasjonssystemMinimum.Builder<_B> withKlassifikasjonstype(final Klassifikasjonstype klassifikasjonstype) { this.klassifikasjonstype = ((klassifikasjonstype == null)?null:new Klassifikasjonstype.Builder>(this, klassifikasjonstype, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "klassifikasjonstype" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Klassifikasjonstype.Builder#end()} * to return to the current builder. * * @return * A new builder to build the value of the "klassifikasjonstype" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Klassifikasjonstype.Builder#end()} * to return to the current builder. */ public Klassifikasjonstype.Builder> withKlassifikasjonstype() { if (this.klassifikasjonstype!= null) { return this.klassifikasjonstype; } return this.klassifikasjonstype = new Klassifikasjonstype.Builder>(this, null, false); } /** * Sets the new value of "tittel" (any previous value will be replaced) * * @param tittel * New value of the "tittel" property. */ public KlassifikasjonssystemMinimum.Builder<_B> withTittel(final String tittel) { this.tittel = tittel; return this; } @Override public KlassifikasjonssystemMinimum build() { if (_storedValue == null) { return this.init(new KlassifikasjonssystemMinimum()); } else { return ((KlassifikasjonssystemMinimum) _storedValue); } } public KlassifikasjonssystemMinimum.Builder<_B> copyOf(final KlassifikasjonssystemMinimum _other) { _other.copyTo(this); return this; } public KlassifikasjonssystemMinimum.Builder<_B> copyOf(final KlassifikasjonssystemMinimum.Builder _other) { return copyOf(_other.build()); } } public static class Select extends KlassifikasjonssystemMinimum.Selector { Select() { super(null, null, null); } public static KlassifikasjonssystemMinimum.Select _root() { return new KlassifikasjonssystemMinimum.Select(); } } public static class Selector , TParent > extends com.kscs.util.jaxb.Selector { private com.kscs.util.jaxb.Selector> klassifikasjonssystemID = null; private Klassifikasjonstype.Selector> klassifikasjonstype = null; private com.kscs.util.jaxb.Selector> tittel = null; 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()); if (this.klassifikasjonssystemID!= null) { products.put("klassifikasjonssystemID", this.klassifikasjonssystemID.init()); } if (this.klassifikasjonstype!= null) { products.put("klassifikasjonstype", this.klassifikasjonstype.init()); } if (this.tittel!= null) { products.put("tittel", this.tittel.init()); } return products; } public com.kscs.util.jaxb.Selector> klassifikasjonssystemID() { return ((this.klassifikasjonssystemID == null)?this.klassifikasjonssystemID = new com.kscs.util.jaxb.Selector>(this._root, this, "klassifikasjonssystemID"):this.klassifikasjonssystemID); } public Klassifikasjonstype.Selector> klassifikasjonstype() { return ((this.klassifikasjonstype == null)?this.klassifikasjonstype = new Klassifikasjonstype.Selector>(this._root, this, "klassifikasjonstype"):this.klassifikasjonstype); } public com.kscs.util.jaxb.Selector> tittel() { return ((this.tittel == null)?this.tittel = new com.kscs.util.jaxb.Selector>(this._root, this, "tittel"):this.tittel); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy