WaterdeelType.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: 2018.12.31 at 10:32:54 AM 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;

/**
 * Java class for WaterdeelType complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType name="WaterdeelType">
 *   &lt;complexContent>
 *     &lt;extension base="{http://register.geostandaarden.nl/gmlapplicatieschema/top50nl/1.1.1}_Top50nlObjectType">
 *       &lt;sequence>
 *         &lt;element name="typeWater" type="{http://register.geostandaarden.nl/gmlapplicatieschema/top50nl/1.1.1}TypeWaterT50Type"/>
 *         &lt;element name="breedteklasse" type="{http://register.geostandaarden.nl/gmlapplicatieschema/top50nl/1.1.1}BreedteklasseWaterT50Type" minOccurs="0"/>
 *         &lt;element name="fysiekVoorkomen" type="{http://register.geostandaarden.nl/gmlapplicatieschema/top50nl/1.1.1}FysiekVoorkomenWaterT50Type" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="hoogteniveau" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *         &lt;element name="geometrie" type="{http://register.geostandaarden.nl/gmlapplicatieschema/top50nl/1.1.1}VlakOfLijnPropertyType" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/extension>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(
    name = "WaterdeelType",
    namespace = "http://register.geostandaarden.nl/gmlapplicatieschema/top50nl/1.1.1",
    propOrder = {"typeWater", "breedteklasse", "fysiekVoorkomen", "hoogteniveau", "geometrie"})
public class WaterdeelType extends Top50NlObjectType {

  @XmlElement(required = true)
  @XmlSchemaType(name = "string")
  protected TypeWaterT50Type typeWater;

  protected String breedteklasse;

  @XmlSchemaType(name = "string")
  protected List<FysiekVoorkomenWaterT50Type> fysiekVoorkomen;

  @XmlElement(required = true)
  protected BigInteger hoogteniveau;

  @XmlAnyElement protected Element geometrie;

  /**
   * Gets the value of the typeWater property.
   *
   * @return possible object is {@link TypeWaterT50Type }
   */
  public TypeWaterT50Type getTypeWater() {
    return typeWater;
  }

  /**
   * Sets the value of the typeWater property.
   *
   * @param value allowed object is {@link TypeWaterT50Type }
   */
  public void setTypeWater(TypeWaterT50Type value) {
    this.typeWater = value;
  }

  /**
   * Gets the value of the breedteklasse property.
   *
   * @return possible object is {@link String }
   */
  public String getBreedteklasse() {
    return breedteklasse;
  }

  /**
   * Sets the value of the breedteklasse property.
   *
   * @param value allowed object is {@link String }
   */
  public void setBreedteklasse(String value) {
    this.breedteklasse = 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 FysiekVoorkomenWaterT50Type
   * }
   */
  public List<FysiekVoorkomenWaterT50Type> getFysiekVoorkomen() {
    if (fysiekVoorkomen == null) {
      fysiekVoorkomen = new ArrayList<FysiekVoorkomenWaterT50Type>();
    }
    return this.fysiekVoorkomen;
  }

  /**
   * 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 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;
  }
}