// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlList; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.w3._1999.xlink.ActuateType; import org.w3._1999.xlink.ShowType; import org.w3._1999.xlink.TypeType; /** * Metadata about the rangeSet. Definition of record structure. * This is required if the rangeSet is encoded in a DataBlock. * We use a gml:_Value with empty values as a map of the composite value structure. * * <p>Java-Klasse für RangeParametersType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="RangeParametersType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence minOccurs="0"> * <group ref="{http://www.opengis.net/gml}ValueObject"/> * </sequence> * <attGroup ref="{http://www.opengis.net/gml}AssociationAttributeGroup"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RangeParametersType", propOrder = { "_boolean", "category", "quantity", "count", "booleanList", "categoryList", "quantityList", "countList", "categoryExtent", "quantityExtent", "countExtent", "compositeValue" }) public class RangeParametersType { @XmlElement(name = "Boolean") protected Boolean _boolean; @XmlElement(name = "Category") protected CodeType category; @XmlElement(name = "Quantity") protected MeasureType quantity; @XmlElement(name = "Count") protected BigInteger count; @XmlList @XmlElement(name = "BooleanList") protected List<String> booleanList; @XmlElement(name = "CategoryList") protected CodeOrNullListType categoryList; @XmlElement(name = "QuantityList") protected MeasureOrNullListType quantityList; @XmlList @XmlElement(name = "CountList") protected List<String> countList; @XmlElement(name = "CategoryExtent") protected CategoryExtentType categoryExtent; @XmlElement(name = "QuantityExtent") protected QuantityExtentType quantityExtent; @XmlList @XmlElement(name = "CountExtent") protected List<String> countExtent; @XmlElementRef(name = "CompositeValue", namespace = "http://www.opengis.net/gml", type = JAXBElement.class, required = false) protected JAXBElement<? extends CompositeValueType> compositeValue; @XmlAttribute(name = "remoteSchema", namespace = "http://www.opengis.net/gml") @XmlSchemaType(name = "anyURI") protected String remoteSchema; @XmlAttribute(name = "type", namespace = "http://www.w3.org/1999/xlink") protected TypeType type; @XmlAttribute(name = "href", namespace = "http://www.w3.org/1999/xlink") protected String href; @XmlAttribute(name = "role", namespace = "http://www.w3.org/1999/xlink") protected String role; @XmlAttribute(name = "arcrole", namespace = "http://www.w3.org/1999/xlink") protected String arcrole; @XmlAttribute(name = "title", namespace = "http://www.w3.org/1999/xlink") protected String title; @XmlAttribute(name = "show", namespace = "http://www.w3.org/1999/xlink") protected ShowType show; @XmlAttribute(name = "actuate", namespace = "http://www.w3.org/1999/xlink") protected ActuateType actuate; /** * Ruft den Wert der boolean-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isBoolean() { return _boolean; } /** * Legt den Wert der boolean-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setBoolean(Boolean value) { this._boolean = value; } public boolean isSetBoolean() { return (this._boolean!= null); } /** * Ruft den Wert der category-Eigenschaft ab. * * @return * possible object is * {@link CodeType } * */ public CodeType getCategory() { return category; } /** * Legt den Wert der category-Eigenschaft fest. * * @param value * allowed object is * {@link CodeType } * */ public void setCategory(CodeType value) { this.category = value; } public boolean isSetCategory() { return (this.category!= null); } /** * Ruft den Wert der quantity-Eigenschaft ab. * * @return * possible object is * {@link MeasureType } * */ public MeasureType getQuantity() { return quantity; } /** * Legt den Wert der quantity-Eigenschaft fest. * * @param value * allowed object is * {@link MeasureType } * */ public void setQuantity(MeasureType value) { this.quantity = value; } public boolean isSetQuantity() { return (this.quantity!= null); } /** * Ruft den Wert der count-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCount() { return count; } /** * Legt den Wert der count-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setCount(BigInteger value) { this.count = value; } public boolean isSetCount() { return (this.count!= null); } /** * Gets the value of the booleanList 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 booleanList property. * * <p> * For example, to add a new item, do as follows: * <pre> * getBooleanList().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getBooleanList() { if (booleanList == null) { booleanList = new ArrayList<String>(); } return this.booleanList; } public boolean isSetBooleanList() { return ((this.booleanList!= null)&&(!this.booleanList.isEmpty())); } public void unsetBooleanList() { this.booleanList = null; } /** * Ruft den Wert der categoryList-Eigenschaft ab. * * @return * possible object is * {@link CodeOrNullListType } * */ public CodeOrNullListType getCategoryList() { return categoryList; } /** * Legt den Wert der categoryList-Eigenschaft fest. * * @param value * allowed object is * {@link CodeOrNullListType } * */ public void setCategoryList(CodeOrNullListType value) { this.categoryList = value; } public boolean isSetCategoryList() { return (this.categoryList!= null); } /** * Ruft den Wert der quantityList-Eigenschaft ab. * * @return * possible object is * {@link MeasureOrNullListType } * */ public MeasureOrNullListType getQuantityList() { return quantityList; } /** * Legt den Wert der quantityList-Eigenschaft fest. * * @param value * allowed object is * {@link MeasureOrNullListType } * */ public void setQuantityList(MeasureOrNullListType value) { this.quantityList = value; } public boolean isSetQuantityList() { return (this.quantityList!= null); } /** * Gets the value of the countList 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 countList property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCountList().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getCountList() { if (countList == null) { countList = new ArrayList<String>(); } return this.countList; } public boolean isSetCountList() { return ((this.countList!= null)&&(!this.countList.isEmpty())); } public void unsetCountList() { this.countList = null; } /** * Ruft den Wert der categoryExtent-Eigenschaft ab. * * @return * possible object is * {@link CategoryExtentType } * */ public CategoryExtentType getCategoryExtent() { return categoryExtent; } /** * Legt den Wert der categoryExtent-Eigenschaft fest. * * @param value * allowed object is * {@link CategoryExtentType } * */ public void setCategoryExtent(CategoryExtentType value) { this.categoryExtent = value; } public boolean isSetCategoryExtent() { return (this.categoryExtent!= null); } /** * Ruft den Wert der quantityExtent-Eigenschaft ab. * * @return * possible object is * {@link QuantityExtentType } * */ public QuantityExtentType getQuantityExtent() { return quantityExtent; } /** * Legt den Wert der quantityExtent-Eigenschaft fest. * * @param value * allowed object is * {@link QuantityExtentType } * */ public void setQuantityExtent(QuantityExtentType value) { this.quantityExtent = value; } public boolean isSetQuantityExtent() { return (this.quantityExtent!= null); } /** * Gets the value of the countExtent 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 countExtent property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCountExtent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getCountExtent() { if (countExtent == null) { countExtent = new ArrayList<String>(); } return this.countExtent; } public boolean isSetCountExtent() { return ((this.countExtent!= null)&&(!this.countExtent.isEmpty())); } public void unsetCountExtent() { this.countExtent = null; } /** * Ruft den Wert der compositeValue-Eigenschaft ab. * * @return * possible object is * {@link JAXBElement }{@code <}{@link CompositeValueType }{@code >} * {@link JAXBElement }{@code <}{@link ValueArrayType }{@code >} * */ public JAXBElement<? extends CompositeValueType> getCompositeValue() { return compositeValue; } /** * Legt den Wert der compositeValue-Eigenschaft fest. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link CompositeValueType }{@code >} * {@link JAXBElement }{@code <}{@link ValueArrayType }{@code >} * */ public void setCompositeValue(JAXBElement<? extends CompositeValueType> value) { this.compositeValue = value; } public boolean isSetCompositeValue() { return (this.compositeValue!= null); } /** * Ruft den Wert der remoteSchema-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getRemoteSchema() { return remoteSchema; } /** * Legt den Wert der remoteSchema-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setRemoteSchema(String value) { this.remoteSchema = value; } public boolean isSetRemoteSchema() { return (this.remoteSchema!= null); } /** * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is * {@link TypeType } * */ public TypeType getType() { if (type == null) { return TypeType.SIMPLE; } else { return type; } } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link TypeType } * */ public void setType(TypeType value) { this.type = value; } public boolean isSetType() { return (this.type!= null); } /** * Ruft den Wert der href-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Legt den Wert der href-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } public boolean isSetHref() { return (this.href!= null); } /** * Ruft den Wert der role-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getRole() { return role; } /** * Legt den Wert der role-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setRole(String value) { this.role = value; } public boolean isSetRole() { return (this.role!= null); } /** * Ruft den Wert der arcrole-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getArcrole() { return arcrole; } /** * Legt den Wert der arcrole-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setArcrole(String value) { this.arcrole = value; } public boolean isSetArcrole() { return (this.arcrole!= null); } /** * Ruft den Wert der title-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Legt den Wert der title-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } public boolean isSetTitle() { return (this.title!= null); } /** * Ruft den Wert der show-Eigenschaft ab. * * @return * possible object is * {@link ShowType } * */ public ShowType getShow() { return show; } /** * Legt den Wert der show-Eigenschaft fest. * * @param value * allowed object is * {@link ShowType } * */ public void setShow(ShowType value) { this.show = value; } public boolean isSetShow() { return (this.show!= null); } /** * Ruft den Wert der actuate-Eigenschaft ab. * * @return * possible object is * {@link ActuateType } * */ public ActuateType getActuate() { return actuate; } /** * Legt den Wert der actuate-Eigenschaft fest. * * @param value * allowed object is * {@link ActuateType } * */ public void setActuate(ActuateType value) { this.actuate = value; } public boolean isSetActuate() { return (this.actuate!= null); } public void setBooleanList(List<String> value) { this.booleanList = value; } public void setCountList(List<String> value) { this.countList = value; } public void setCountExtent(List<String> value) { this.countExtent = value; } }