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

no.ks.fiks.arkiv.v1.innsyn.sok.DokumentbeskrivelseSokdefinisjon 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.innsyn.sok;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
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.XmlSchemaType;
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.Responstype;


/**
 * 

Java class for dokumentbeskrivelseSokdefinisjon complex type. * *

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

 * <complexType name="dokumentbeskrivelseSokdefinisjon">
 *   <complexContent>
 *     <extension base="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/sok/v1}sokdefinisjon">
 *       <sequence>
 *         <element name="inkluder" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/sok/v1}dokumentbeskrivelseInkluder" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="parametere" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/sok/v1}dokumentbeskrivelseParameter" maxOccurs="unbounded"/>
 *         <element name="sortering" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/sok/v1}dokumentbeskrivelseSortering" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "dokumentbeskrivelseSokdefinisjon", propOrder = { "inkluders", "parameteres", "sorterings" }) public class DokumentbeskrivelseSokdefinisjon extends Sokdefinisjon { @XmlElement(name = "inkluder") @XmlSchemaType(name = "string") protected List inkluders; @XmlElement(name = "parametere", required = true) protected List parameteres; @XmlElement(name = "sortering") protected List sorterings; /** * Gets the value of the inkluders 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 inkluders property. * *

* For example, to add a new item, do as follows: *

     *    getInkluders().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DokumentbeskrivelseInkluder } * * */ public List getInkluders() { if (inkluders == null) { inkluders = new ArrayList(); } return this.inkluders; } /** * Gets the value of the parameteres 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 parameteres property. * *

* For example, to add a new item, do as follows: *

     *    getParameteres().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DokumentbeskrivelseParameter } * * */ public List getParameteres() { if (parameteres == null) { parameteres = new ArrayList(); } return this.parameteres; } /** * Gets the value of the sorterings 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 sorterings property. * *

* For example, to add a new item, do as follows: *

     *    getSorterings().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DokumentbeskrivelseSortering } * * */ public List getSorterings() { if (sorterings == null) { sorterings = new ArrayList(); } return this.sorterings; } /** * 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 DokumentbeskrivelseSokdefinisjon.Builder<_B> _other) { super.copyTo(_other); if (this.inkluders == null) { _other.inkluders = null; } else { _other.inkluders = new ArrayList(); for (DokumentbeskrivelseInkluder _item: this.inkluders) { _other.inkluders.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } if (this.parameteres == null) { _other.parameteres = null; } else { _other.parameteres = new ArrayList>>(); for (DokumentbeskrivelseParameter _item: this.parameteres) { _other.parameteres.add(((_item == null)?null:_item.newCopyBuilder(_other))); } } if (this.sorterings == null) { _other.sorterings = null; } else { _other.sorterings = new ArrayList>>(); for (DokumentbeskrivelseSortering _item: this.sorterings) { _other.sorterings.add(((_item == null)?null:_item.newCopyBuilder(_other))); } } } @Override public<_B >DokumentbeskrivelseSokdefinisjon.Builder<_B> newCopyBuilder(final _B _parentBuilder) { return new DokumentbeskrivelseSokdefinisjon.Builder<_B>(_parentBuilder, this, true); } @Override public DokumentbeskrivelseSokdefinisjon.Builder newCopyBuilder() { return newCopyBuilder(null); } public static DokumentbeskrivelseSokdefinisjon.Builder builder() { return new DokumentbeskrivelseSokdefinisjon.Builder(null, null, false); } public static<_B >DokumentbeskrivelseSokdefinisjon.Builder<_B> copyOf(final Sokdefinisjon _other) { final DokumentbeskrivelseSokdefinisjon.Builder<_B> _newBuilder = new DokumentbeskrivelseSokdefinisjon.Builder<_B>(null, null, false); _other.copyTo(_newBuilder); return _newBuilder; } public static<_B >DokumentbeskrivelseSokdefinisjon.Builder<_B> copyOf(final DokumentbeskrivelseSokdefinisjon _other) { final DokumentbeskrivelseSokdefinisjon.Builder<_B> _newBuilder = new DokumentbeskrivelseSokdefinisjon.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 DokumentbeskrivelseSokdefinisjon.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { super.copyTo(_other, _propertyTree, _propertyTreeUse); final PropertyTree inkludersPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("inkluders")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(inkludersPropertyTree!= null):((inkludersPropertyTree == null)||(!inkludersPropertyTree.isLeaf())))) { if (this.inkluders == null) { _other.inkluders = null; } else { _other.inkluders = new ArrayList(); for (DokumentbeskrivelseInkluder _item: this.inkluders) { _other.inkluders.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } } final PropertyTree parameteresPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("parameteres")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(parameteresPropertyTree!= null):((parameteresPropertyTree == null)||(!parameteresPropertyTree.isLeaf())))) { if (this.parameteres == null) { _other.parameteres = null; } else { _other.parameteres = new ArrayList>>(); for (DokumentbeskrivelseParameter _item: this.parameteres) { _other.parameteres.add(((_item == null)?null:_item.newCopyBuilder(_other, parameteresPropertyTree, _propertyTreeUse))); } } } final PropertyTree sorteringsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("sorterings")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(sorteringsPropertyTree!= null):((sorteringsPropertyTree == null)||(!sorteringsPropertyTree.isLeaf())))) { if (this.sorterings == null) { _other.sorterings = null; } else { _other.sorterings = new ArrayList>>(); for (DokumentbeskrivelseSortering _item: this.sorterings) { _other.sorterings.add(((_item == null)?null:_item.newCopyBuilder(_other, sorteringsPropertyTree, _propertyTreeUse))); } } } } @Override public<_B >DokumentbeskrivelseSokdefinisjon.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return new DokumentbeskrivelseSokdefinisjon.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse); } @Override public DokumentbeskrivelseSokdefinisjon.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return newCopyBuilder(null, _propertyTree, _propertyTreeUse); } public static<_B >DokumentbeskrivelseSokdefinisjon.Builder<_B> copyOf(final Sokdefinisjon _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final DokumentbeskrivelseSokdefinisjon.Builder<_B> _newBuilder = new DokumentbeskrivelseSokdefinisjon.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static<_B >DokumentbeskrivelseSokdefinisjon.Builder<_B> copyOf(final DokumentbeskrivelseSokdefinisjon _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final DokumentbeskrivelseSokdefinisjon.Builder<_B> _newBuilder = new DokumentbeskrivelseSokdefinisjon.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static DokumentbeskrivelseSokdefinisjon.Builder copyExcept(final Sokdefinisjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static DokumentbeskrivelseSokdefinisjon.Builder copyExcept(final DokumentbeskrivelseSokdefinisjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static DokumentbeskrivelseSokdefinisjon.Builder copyOnly(final Sokdefinisjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static DokumentbeskrivelseSokdefinisjon.Builder copyOnly(final DokumentbeskrivelseSokdefinisjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static class Builder<_B > extends Sokdefinisjon.Builder<_B> implements Buildable { private List inkluders; private List>> parameteres; private List>> sorterings; public Builder(final _B _parentBuilder, final DokumentbeskrivelseSokdefinisjon _other, final boolean _copy) { super(_parentBuilder, _other, _copy); if (_other!= null) { if (_other.inkluders == null) { this.inkluders = null; } else { this.inkluders = new ArrayList(); for (DokumentbeskrivelseInkluder _item: _other.inkluders) { this.inkluders.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } if (_other.parameteres == null) { this.parameteres = null; } else { this.parameteres = new ArrayList>>(); for (DokumentbeskrivelseParameter _item: _other.parameteres) { this.parameteres.add(((_item == null)?null:_item.newCopyBuilder(this))); } } if (_other.sorterings == null) { this.sorterings = null; } else { this.sorterings = new ArrayList>>(); for (DokumentbeskrivelseSortering _item: _other.sorterings) { this.sorterings.add(((_item == null)?null:_item.newCopyBuilder(this))); } } } } public Builder(final _B _parentBuilder, final DokumentbeskrivelseSokdefinisjon _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { super(_parentBuilder, _other, _copy, _propertyTree, _propertyTreeUse); if (_other!= null) { final PropertyTree inkludersPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("inkluders")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(inkludersPropertyTree!= null):((inkludersPropertyTree == null)||(!inkludersPropertyTree.isLeaf())))) { if (_other.inkluders == null) { this.inkluders = null; } else { this.inkluders = new ArrayList(); for (DokumentbeskrivelseInkluder _item: _other.inkluders) { this.inkluders.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } } final PropertyTree parameteresPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("parameteres")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(parameteresPropertyTree!= null):((parameteresPropertyTree == null)||(!parameteresPropertyTree.isLeaf())))) { if (_other.parameteres == null) { this.parameteres = null; } else { this.parameteres = new ArrayList>>(); for (DokumentbeskrivelseParameter _item: _other.parameteres) { this.parameteres.add(((_item == null)?null:_item.newCopyBuilder(this, parameteresPropertyTree, _propertyTreeUse))); } } } final PropertyTree sorteringsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("sorterings")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(sorteringsPropertyTree!= null):((sorteringsPropertyTree == null)||(!sorteringsPropertyTree.isLeaf())))) { if (_other.sorterings == null) { this.sorterings = null; } else { this.sorterings = new ArrayList>>(); for (DokumentbeskrivelseSortering _item: _other.sorterings) { this.sorterings.add(((_item == null)?null:_item.newCopyBuilder(this, sorteringsPropertyTree, _propertyTreeUse))); } } } } } protected<_P extends DokumentbeskrivelseSokdefinisjon >_P init(final _P _product) { if (this.inkluders!= null) { final List inkluders = new ArrayList(this.inkluders.size()); for (Buildable _item: this.inkluders) { inkluders.add(((DokumentbeskrivelseInkluder) _item.build())); } _product.inkluders = inkluders; } if (this.parameteres!= null) { final List parameteres = new ArrayList(this.parameteres.size()); for (DokumentbeskrivelseParameter.Builder> _item: this.parameteres) { parameteres.add(_item.build()); } _product.parameteres = parameteres; } if (this.sorterings!= null) { final List sorterings = new ArrayList(this.sorterings.size()); for (DokumentbeskrivelseSortering.Builder> _item: this.sorterings) { sorterings.add(_item.build()); } _product.sorterings = sorterings; } return super.init(_product); } /** * Adds the given items to the value of "inkluders" * * @param inkluders * Items to add to the value of the "inkluders" property */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> addInkluders(final Iterable inkluders) { if (inkluders!= null) { if (this.inkluders == null) { this.inkluders = new ArrayList(); } for (DokumentbeskrivelseInkluder _item: inkluders) { this.inkluders.add(new Buildable.PrimitiveBuildable(_item)); } } return this; } /** * Sets the new value of "inkluders" (any previous value will be replaced) * * @param inkluders * New value of the "inkluders" property. */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> withInkluders(final Iterable inkluders) { if (this.inkluders!= null) { this.inkluders.clear(); } return addInkluders(inkluders); } /** * Adds the given items to the value of "inkluders" * * @param inkluders * Items to add to the value of the "inkluders" property */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> addInkluders(DokumentbeskrivelseInkluder... inkluders) { addInkluders(Arrays.asList(inkluders)); return this; } /** * Sets the new value of "inkluders" (any previous value will be replaced) * * @param inkluders * New value of the "inkluders" property. */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> withInkluders(DokumentbeskrivelseInkluder... inkluders) { withInkluders(Arrays.asList(inkluders)); return this; } /** * Adds the given items to the value of "parameteres" * * @param parameteres * Items to add to the value of the "parameteres" property */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> addParameteres(final Iterable parameteres) { if (parameteres!= null) { if (this.parameteres == null) { this.parameteres = new ArrayList>>(); } for (DokumentbeskrivelseParameter _item: parameteres) { this.parameteres.add(new DokumentbeskrivelseParameter.Builder>(this, _item, false)); } } return this; } /** * Sets the new value of "parameteres" (any previous value will be replaced) * * @param parameteres * New value of the "parameteres" property. */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> withParameteres(final Iterable parameteres) { if (this.parameteres!= null) { this.parameteres.clear(); } return addParameteres(parameteres); } /** * Adds the given items to the value of "parameteres" * * @param parameteres * Items to add to the value of the "parameteres" property */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> addParameteres(DokumentbeskrivelseParameter... parameteres) { addParameteres(Arrays.asList(parameteres)); return this; } /** * Sets the new value of "parameteres" (any previous value will be replaced) * * @param parameteres * New value of the "parameteres" property. */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> withParameteres(DokumentbeskrivelseParameter... parameteres) { withParameteres(Arrays.asList(parameteres)); return this; } /** * Returns a new builder to build an additional value of the "Parameteres" * property. * Use {@link * no.ks.fiks.arkiv.v1.innsyn.sok.DokumentbeskrivelseParameter.Builder#end()} to * return to the current builder. * * @return * a new builder to build an additional value of the "Parameteres" property. * Use {@link * no.ks.fiks.arkiv.v1.innsyn.sok.DokumentbeskrivelseParameter.Builder#end()} to * return to the current builder. */ public DokumentbeskrivelseParameter.Builder> addParameteres() { if (this.parameteres == null) { this.parameteres = new ArrayList>>(); } final DokumentbeskrivelseParameter.Builder> parameteres_Builder = new DokumentbeskrivelseParameter.Builder>(this, null, false); this.parameteres.add(parameteres_Builder); return parameteres_Builder; } /** * Adds the given items to the value of "sorterings" * * @param sorterings * Items to add to the value of the "sorterings" property */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> addSorterings(final Iterable sorterings) { if (sorterings!= null) { if (this.sorterings == null) { this.sorterings = new ArrayList>>(); } for (DokumentbeskrivelseSortering _item: sorterings) { this.sorterings.add(new DokumentbeskrivelseSortering.Builder>(this, _item, false)); } } return this; } /** * Sets the new value of "sorterings" (any previous value will be replaced) * * @param sorterings * New value of the "sorterings" property. */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> withSorterings(final Iterable sorterings) { if (this.sorterings!= null) { this.sorterings.clear(); } return addSorterings(sorterings); } /** * Adds the given items to the value of "sorterings" * * @param sorterings * Items to add to the value of the "sorterings" property */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> addSorterings(DokumentbeskrivelseSortering... sorterings) { addSorterings(Arrays.asList(sorterings)); return this; } /** * Sets the new value of "sorterings" (any previous value will be replaced) * * @param sorterings * New value of the "sorterings" property. */ public DokumentbeskrivelseSokdefinisjon.Builder<_B> withSorterings(DokumentbeskrivelseSortering... sorterings) { withSorterings(Arrays.asList(sorterings)); return this; } /** * Returns a new builder to build an additional value of the "Sorterings" property. * Use {@link * no.ks.fiks.arkiv.v1.innsyn.sok.DokumentbeskrivelseSortering.Builder#end()} to * return to the current builder. * * @return * a new builder to build an additional value of the "Sorterings" property. * Use {@link * no.ks.fiks.arkiv.v1.innsyn.sok.DokumentbeskrivelseSortering.Builder#end()} to * return to the current builder. */ public DokumentbeskrivelseSortering.Builder> addSorterings() { if (this.sorterings == null) { this.sorterings = new ArrayList>>(); } final DokumentbeskrivelseSortering.Builder> sorterings_Builder = new DokumentbeskrivelseSortering.Builder>(this, null, false); this.sorterings.add(sorterings_Builder); return sorterings_Builder; } /** * Sets the new value of "responstype" (any previous value will be replaced) * * @param responstype * New value of the "responstype" property. */ @Override public DokumentbeskrivelseSokdefinisjon.Builder<_B> withResponstype(final Responstype responstype) { super.withResponstype(responstype); return this; } @Override public DokumentbeskrivelseSokdefinisjon build() { if (_storedValue == null) { return this.init(new DokumentbeskrivelseSokdefinisjon()); } else { return ((DokumentbeskrivelseSokdefinisjon) _storedValue); } } public DokumentbeskrivelseSokdefinisjon.Builder<_B> copyOf(final DokumentbeskrivelseSokdefinisjon _other) { _other.copyTo(this); return this; } public DokumentbeskrivelseSokdefinisjon.Builder<_B> copyOf(final DokumentbeskrivelseSokdefinisjon.Builder _other) { return copyOf(_other.build()); } } public static class Select extends DokumentbeskrivelseSokdefinisjon.Selector { Select() { super(null, null, null); } public static DokumentbeskrivelseSokdefinisjon.Select _root() { return new DokumentbeskrivelseSokdefinisjon.Select(); } } public static class Selector , TParent > extends Sokdefinisjon.Selector { private com.kscs.util.jaxb.Selector> inkluders = null; private DokumentbeskrivelseParameter.Selector> parameteres = null; private DokumentbeskrivelseSortering.Selector> sorterings = 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.inkluders!= null) { products.put("inkluders", this.inkluders.init()); } if (this.parameteres!= null) { products.put("parameteres", this.parameteres.init()); } if (this.sorterings!= null) { products.put("sorterings", this.sorterings.init()); } return products; } public com.kscs.util.jaxb.Selector> inkluders() { return ((this.inkluders == null)?this.inkluders = new com.kscs.util.jaxb.Selector>(this._root, this, "inkluders"):this.inkluders); } public DokumentbeskrivelseParameter.Selector> parameteres() { return ((this.parameteres == null)?this.parameteres = new DokumentbeskrivelseParameter.Selector>(this._root, this, "parameteres"):this.parameteres); } public DokumentbeskrivelseSortering.Selector> sorterings() { return ((this.sorterings == null)?this.sorterings = new DokumentbeskrivelseSortering.Selector>(this._root, this, "sorterings"):this.sorterings); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy