SpoorbaandeelType.java

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.12.08 at 04:32:51 PM CET 
//


package nl.b3p.topnl.top50nl;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;


/**
 * <p>Java class for SpoorbaandeelType complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="SpoorbaandeelType">
 *   &lt;complexContent>
 *     &lt;extension base="{http://www.kadaster.nl/top50nl/1.1}_Top50nlObjectType">
 *       &lt;sequence>
 *         &lt;element name="aantalSporen" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *         &lt;element name="fysiekVoorkomen" type="{http://www.kadaster.nl/top50nl/1.1}FysiekVoorkomenSpoorT50Type" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="geometrie" type="{http://www.opengis.net/gml/3.2}CurvePropertyType"/>
 *         &lt;element name="hoogteniveau" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *         &lt;element name="status" type="{http://www.kadaster.nl/top50nl/1.1}StatusT50Type"/>
 *         &lt;element name="typeSpoorbaan" type="{http://www.kadaster.nl/top50nl/1.1}TypeSpoorbaanT50Type"/>
 *       &lt;/sequence>
 *     &lt;/extension>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpoorbaandeelType", namespace = "http://www.kadaster.nl/top50nl/1.1", propOrder = {
    "aantalSporen",
    "fysiekVoorkomen",
    "geometrie",
    "hoogteniveau",
    "status",
    "typeSpoorbaan"
})
public class SpoorbaandeelType
    extends Top50NlObjectType
{

    @XmlElement(required = true)
    protected BigInteger aantalSporen;
    @XmlSchemaType(name = "string")
    protected List<FysiekVoorkomenSpoorT50Type> fysiekVoorkomen;
    @XmlAnyElement
    protected Element geometrie;
    @XmlElement(required = true)
    protected BigInteger hoogteniveau;
    @XmlElement(required = true)
    @XmlSchemaType(name = "string")
    protected StatusT50Type status;
    @XmlElement(required = true)
    @XmlSchemaType(name = "string")
    protected TypeSpoorbaanT50Type typeSpoorbaan;

    /**
     * Gets the value of the aantalSporen property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getAantalSporen() {
        return aantalSporen;
    }

    /**
     * Sets the value of the aantalSporen property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setAantalSporen(BigInteger value) {
        this.aantalSporen = value;
    }

    /**
     * Gets the value of the fysiekVoorkomen property.
     * 
     * <p>
     * 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 <CODE>set</CODE> method for the fysiekVoorkomen property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getFysiekVoorkomen().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link FysiekVoorkomenSpoorT50Type }
     * 
     * 
     */
    public List<FysiekVoorkomenSpoorT50Type> getFysiekVoorkomen() {
        if (fysiekVoorkomen == null) {
            fysiekVoorkomen = new ArrayList<FysiekVoorkomenSpoorT50Type>();
        }
        return this.fysiekVoorkomen;
    }

    /**
     * Gets the value of the geometrie property.
     * 
     * @return
     *     possible object is
     *     {@link Element }
     *     
     */
    public Element getGeometrie() {
        return geometrie;
    }

    /**
     * Sets the value of the geometrie property.
     * 
     * @param value
     *     allowed object is
     *     {@link Element }
     *     
     */
    public void setGeometrie(Element value) {
        this.geometrie = value;
    }

    /**
     * Gets the value of the hoogteniveau property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getHoogteniveau() {
        return hoogteniveau;
    }

    /**
     * Sets the value of the hoogteniveau property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setHoogteniveau(BigInteger value) {
        this.hoogteniveau = value;
    }

    /**
     * Gets the value of the status property.
     * 
     * @return
     *     possible object is
     *     {@link StatusT50Type }
     *     
     */
    public StatusT50Type getStatus() {
        return status;
    }

    /**
     * Sets the value of the status property.
     * 
     * @param value
     *     allowed object is
     *     {@link StatusT50Type }
     *     
     */
    public void setStatus(StatusT50Type value) {
        this.status = value;
    }

    /**
     * Gets the value of the typeSpoorbaan property.
     * 
     * @return
     *     possible object is
     *     {@link TypeSpoorbaanT50Type }
     *     
     */
    public TypeSpoorbaanT50Type getTypeSpoorbaan() {
        return typeSpoorbaan;
    }

    /**
     * Sets the value of the typeSpoorbaan property.
     * 
     * @param value
     *     allowed object is
     *     {@link TypeSpoorbaanT50Type }
     *     
     */
    public void setTypeSpoorbaan(TypeSpoorbaanT50Type value) {
        this.typeSpoorbaan = value;
    }

}