/** * * geo-platform * Rich webgis framework * http://geo-platform.org * ==================================================================== * * Copyright (C) 2008-2017 geoSDI Group (CNR IMAA - Potenza - ITALY). * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. This program is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU General Public License * for more details. You should have received a copy of the GNU General * Public License along with this program. If not, see http://www.gnu.org/licenses/ * * ==================================================================== * * Linking this library statically or dynamically with other modules is * making a combined work based on this library. Thus, the terms and * conditions of the GNU General Public License cover the whole combination. * * As a special exception, the copyright holders of this library give you permission * to link this library with independent modules to produce an executable, regardless * of the license terms of these independent modules, and to copy and distribute * the resulting executable under terms of your choice, provided that you also meet, * for each linked independent module, the terms and conditions of the license of * that module. An independent module is a module which is not derived from or * based on this library. If you modify this library, you may extend this exception * to your version of the library, but you are not obligated to do so. If you do not * wish to do so, delete this exception statement from your version. */ // // Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.7 // Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine. // Generato il: 2015.06.18 alle 12:52:42 AM CEST // package org.geosdi.geoplatform.xml.gml.v320; import java.math.BigInteger; import java.util.ArrayList; import java.util.Collection; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import org.jvnet.jaxb2_commons.lang.CopyStrategy; import org.jvnet.jaxb2_commons.lang.CopyTo; import org.jvnet.jaxb2_commons.lang.Equals; import org.jvnet.jaxb2_commons.lang.EqualsStrategy; import org.jvnet.jaxb2_commons.lang.HashCode; import org.jvnet.jaxb2_commons.lang.HashCodeStrategy; import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy; import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy; import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy; import org.jvnet.jaxb2_commons.lang.JAXBMergeStrategy; import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy; import org.jvnet.jaxb2_commons.lang.MergeFrom; import org.jvnet.jaxb2_commons.lang.MergeStrategy; import org.jvnet.jaxb2_commons.lang.ToString; import org.jvnet.jaxb2_commons.lang.ToStringStrategy; import org.jvnet.jaxb2_commons.locator.ObjectLocator; import org.jvnet.jaxb2_commons.locator.util.LocatorUtils; /** * posList instances (and other instances with the content model specified by DirectPositionListType) hold the coordinates for a sequence of direct positions within the same coordinate reference system (CRS). * if no srsName attribute is given, the CRS shall be specified as part of the larger context this geometry element is part of, typically a geometric object like a point, curve, etc. * The optional attribute count specifies the number of direct positions in the list. If the attribute count is present then the attribute srsDimension shall be present, too. * The number of entries in the list is equal to the product of the dimensionality of the coordinate reference system (i.e. it is a derived value of the coordinate reference system definition) and the number of direct positions. * * <p>Classe Java per DirectPositionListType complex type. * * <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. * * <pre> * <complexType name="DirectPositionListType"> * <simpleContent> * <extension base="<http://www.opengis.net/gml>doubleList"> * <attGroup ref="{http://www.opengis.net/gml}SRSReferenceGroup"/> * <attribute name="count" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DirectPositionListType", propOrder = { "value" }) public class DirectPositionListType implements Cloneable, CopyTo, Equals, HashCode, MergeFrom, ToString { @XmlValue protected List<Double> value; @XmlAttribute(name = "count") @XmlSchemaType(name = "positiveInteger") protected BigInteger count; @XmlAttribute(name = "srsName") @XmlSchemaType(name = "anyURI") protected String srsName; @XmlAttribute(name = "srsDimension") @XmlSchemaType(name = "positiveInteger") protected BigInteger srsDimension; @XmlAttribute(name = "axisLabels") protected List<String> axisLabels; @XmlAttribute(name = "uomLabels") protected List<String> uomLabels; /** * A type for a list of values of the respective simple type.Gets the value of the value 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 value property. * * <p> * For example, to add a new item, do as follows: * <pre> * getValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List<Double> getValue() { if (value == null) { value = new ArrayList<Double>(); } return this.value; } public boolean isSetValue() { return ((this.value!= null)&&(!this.value.isEmpty())); } public void unsetValue() { this.value = null; } /** * Recupera il valore della proprietà count. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCount() { return count; } /** * Imposta il valore della proprietà count. * * @param value * allowed object is * {@link BigInteger } * */ public void setCount(BigInteger value) { this.count = value; } public boolean isSetCount() { return (this.count!= null); } /** * Recupera il valore della proprietà srsName. * * @return * possible object is * {@link String } * */ public String getSrsName() { return srsName; } /** * Imposta il valore della proprietà srsName. * * @param value * allowed object is * {@link String } * */ public void setSrsName(String value) { this.srsName = value; } public boolean isSetSrsName() { return (this.srsName!= null); } /** * Recupera il valore della proprietà srsDimension. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSrsDimension() { return srsDimension; } /** * Imposta il valore della proprietà srsDimension. * * @param value * allowed object is * {@link BigInteger } * */ public void setSrsDimension(BigInteger value) { this.srsDimension = value; } public boolean isSetSrsDimension() { return (this.srsDimension!= null); } /** * Gets the value of the axisLabels 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 axisLabels property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAxisLabels().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getAxisLabels() { if (axisLabels == null) { axisLabels = new ArrayList<String>(); } return this.axisLabels; } public boolean isSetAxisLabels() { return ((this.axisLabels!= null)&&(!this.axisLabels.isEmpty())); } public void unsetAxisLabels() { this.axisLabels = null; } /** * Gets the value of the uomLabels 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 uomLabels property. * * <p> * For example, to add a new item, do as follows: * <pre> * getUomLabels().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getUomLabels() { if (uomLabels == null) { uomLabels = new ArrayList<String>(); } return this.uomLabels; } public boolean isSetUomLabels() { return ((this.uomLabels!= null)&&(!this.uomLabels.isEmpty())); } public void unsetUomLabels() { this.uomLabels = null; } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { { List<Double> theValue; theValue = this.getValue(); strategy.appendField(locator, this, "value", buffer, theValue); } { BigInteger theCount; theCount = this.getCount(); strategy.appendField(locator, this, "count", buffer, theCount); } { String theSrsName; theSrsName = this.getSrsName(); strategy.appendField(locator, this, "srsName", buffer, theSrsName); } { BigInteger theSrsDimension; theSrsDimension = this.getSrsDimension(); strategy.appendField(locator, this, "srsDimension", buffer, theSrsDimension); } { List<String> theAxisLabels; theAxisLabels = this.getAxisLabels(); strategy.appendField(locator, this, "axisLabels", buffer, theAxisLabels); } { List<String> theUomLabels; theUomLabels = this.getUomLabels(); strategy.appendField(locator, this, "uomLabels", buffer, theUomLabels); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof DirectPositionListType)) { return false; } if (this == object) { return true; } final DirectPositionListType that = ((DirectPositionListType) object); { List<Double> lhsValue; lhsValue = this.getValue(); List<Double> rhsValue; rhsValue = that.getValue(); if (!strategy.equals(LocatorUtils.property(thisLocator, "value", lhsValue), LocatorUtils.property(thatLocator, "value", rhsValue), lhsValue, rhsValue)) { return false; } } { BigInteger lhsCount; lhsCount = this.getCount(); BigInteger rhsCount; rhsCount = that.getCount(); if (!strategy.equals(LocatorUtils.property(thisLocator, "count", lhsCount), LocatorUtils.property(thatLocator, "count", rhsCount), lhsCount, rhsCount)) { return false; } } { String lhsSrsName; lhsSrsName = this.getSrsName(); String rhsSrsName; rhsSrsName = that.getSrsName(); if (!strategy.equals(LocatorUtils.property(thisLocator, "srsName", lhsSrsName), LocatorUtils.property(thatLocator, "srsName", rhsSrsName), lhsSrsName, rhsSrsName)) { return false; } } { BigInteger lhsSrsDimension; lhsSrsDimension = this.getSrsDimension(); BigInteger rhsSrsDimension; rhsSrsDimension = that.getSrsDimension(); if (!strategy.equals(LocatorUtils.property(thisLocator, "srsDimension", lhsSrsDimension), LocatorUtils.property(thatLocator, "srsDimension", rhsSrsDimension), lhsSrsDimension, rhsSrsDimension)) { return false; } } { List<String> lhsAxisLabels; lhsAxisLabels = this.getAxisLabels(); List<String> rhsAxisLabels; rhsAxisLabels = that.getAxisLabels(); if (!strategy.equals(LocatorUtils.property(thisLocator, "axisLabels", lhsAxisLabels), LocatorUtils.property(thatLocator, "axisLabels", rhsAxisLabels), lhsAxisLabels, rhsAxisLabels)) { return false; } } { List<String> lhsUomLabels; lhsUomLabels = this.getUomLabels(); List<String> rhsUomLabels; rhsUomLabels = that.getUomLabels(); if (!strategy.equals(LocatorUtils.property(thisLocator, "uomLabels", lhsUomLabels), LocatorUtils.property(thatLocator, "uomLabels", rhsUomLabels), lhsUomLabels, rhsUomLabels)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = 1; { List<Double> theValue; theValue = this.getValue(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "value", theValue), currentHashCode, theValue); } { BigInteger theCount; theCount = this.getCount(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "count", theCount), currentHashCode, theCount); } { String theSrsName; theSrsName = this.getSrsName(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "srsName", theSrsName), currentHashCode, theSrsName); } { BigInteger theSrsDimension; theSrsDimension = this.getSrsDimension(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "srsDimension", theSrsDimension), currentHashCode, theSrsDimension); } { List<String> theAxisLabels; theAxisLabels = this.getAxisLabels(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "axisLabels", theAxisLabels), currentHashCode, theAxisLabels); } { List<String> theUomLabels; theUomLabels = this.getUomLabels(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "uomLabels", theUomLabels), currentHashCode, theUomLabels); } return currentHashCode; } public int hashCode() { final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public Object clone() { return copyTo(createNewInstance()); } public Object copyTo(Object target) { final CopyStrategy strategy = JAXBCopyStrategy.INSTANCE; return copyTo(null, target, strategy); } public Object copyTo(ObjectLocator locator, Object target, CopyStrategy strategy) { final Object draftCopy = ((target == null)?createNewInstance():target); if (draftCopy instanceof DirectPositionListType) { final DirectPositionListType copy = ((DirectPositionListType) draftCopy); if (this.isSetValue()) { List<Double> sourceValue; sourceValue = this.getValue(); @SuppressWarnings("unchecked") List<Double> copyValue = ((List<Double> ) strategy.copy(LocatorUtils.property(locator, "value", sourceValue), sourceValue)); copy.unsetValue(); List<Double> uniqueValuel = copy.getValue(); uniqueValuel.addAll(copyValue); } else { copy.unsetValue(); } if (this.isSetCount()) { BigInteger sourceCount; sourceCount = this.getCount(); BigInteger copyCount = ((BigInteger) strategy.copy(LocatorUtils.property(locator, "count", sourceCount), sourceCount)); copy.setCount(copyCount); } else { copy.count = null; } if (this.isSetSrsName()) { String sourceSrsName; sourceSrsName = this.getSrsName(); String copySrsName = ((String) strategy.copy(LocatorUtils.property(locator, "srsName", sourceSrsName), sourceSrsName)); copy.setSrsName(copySrsName); } else { copy.srsName = null; } if (this.isSetSrsDimension()) { BigInteger sourceSrsDimension; sourceSrsDimension = this.getSrsDimension(); BigInteger copySrsDimension = ((BigInteger) strategy.copy(LocatorUtils.property(locator, "srsDimension", sourceSrsDimension), sourceSrsDimension)); copy.setSrsDimension(copySrsDimension); } else { copy.srsDimension = null; } if (this.isSetAxisLabels()) { List<String> sourceAxisLabels; sourceAxisLabels = this.getAxisLabels(); @SuppressWarnings("unchecked") List<String> copyAxisLabels = ((List<String> ) strategy.copy(LocatorUtils.property(locator, "axisLabels", sourceAxisLabels), sourceAxisLabels)); copy.unsetAxisLabels(); List<String> uniqueAxisLabelsl = copy.getAxisLabels(); uniqueAxisLabelsl.addAll(copyAxisLabels); } else { copy.unsetAxisLabels(); } if (this.isSetUomLabels()) { List<String> sourceUomLabels; sourceUomLabels = this.getUomLabels(); @SuppressWarnings("unchecked") List<String> copyUomLabels = ((List<String> ) strategy.copy(LocatorUtils.property(locator, "uomLabels", sourceUomLabels), sourceUomLabels)); copy.unsetUomLabels(); List<String> uniqueUomLabelsl = copy.getUomLabels(); uniqueUomLabelsl.addAll(copyUomLabels); } else { copy.unsetUomLabels(); } } return draftCopy; } public Object createNewInstance() { return new DirectPositionListType(); } public void mergeFrom(Object left, Object right) { final MergeStrategy strategy = JAXBMergeStrategy.INSTANCE; mergeFrom(null, null, left, right, strategy); } public void mergeFrom(ObjectLocator leftLocator, ObjectLocator rightLocator, Object left, Object right, MergeStrategy strategy) { if (right instanceof DirectPositionListType) { final DirectPositionListType target = this; final DirectPositionListType leftObject = ((DirectPositionListType) left); final DirectPositionListType rightObject = ((DirectPositionListType) right); { List<Double> lhsValue; lhsValue = leftObject.getValue(); List<Double> rhsValue; rhsValue = rightObject.getValue(); target.unsetValue(); List<Double> uniqueValuel = target.getValue(); uniqueValuel.addAll(((List<Double> ) strategy.merge(LocatorUtils.property(leftLocator, "value", lhsValue), LocatorUtils.property(rightLocator, "value", rhsValue), lhsValue, rhsValue))); } { BigInteger lhsCount; lhsCount = leftObject.getCount(); BigInteger rhsCount; rhsCount = rightObject.getCount(); target.setCount(((BigInteger) strategy.merge(LocatorUtils.property(leftLocator, "count", lhsCount), LocatorUtils.property(rightLocator, "count", rhsCount), lhsCount, rhsCount))); } { String lhsSrsName; lhsSrsName = leftObject.getSrsName(); String rhsSrsName; rhsSrsName = rightObject.getSrsName(); target.setSrsName(((String) strategy.merge(LocatorUtils.property(leftLocator, "srsName", lhsSrsName), LocatorUtils.property(rightLocator, "srsName", rhsSrsName), lhsSrsName, rhsSrsName))); } { BigInteger lhsSrsDimension; lhsSrsDimension = leftObject.getSrsDimension(); BigInteger rhsSrsDimension; rhsSrsDimension = rightObject.getSrsDimension(); target.setSrsDimension(((BigInteger) strategy.merge(LocatorUtils.property(leftLocator, "srsDimension", lhsSrsDimension), LocatorUtils.property(rightLocator, "srsDimension", rhsSrsDimension), lhsSrsDimension, rhsSrsDimension))); } { List<String> lhsAxisLabels; lhsAxisLabels = leftObject.getAxisLabels(); List<String> rhsAxisLabels; rhsAxisLabels = rightObject.getAxisLabels(); target.unsetAxisLabels(); List<String> uniqueAxisLabelsl = target.getAxisLabels(); uniqueAxisLabelsl.addAll(((List<String> ) strategy.merge(LocatorUtils.property(leftLocator, "axisLabels", lhsAxisLabels), LocatorUtils.property(rightLocator, "axisLabels", rhsAxisLabels), lhsAxisLabels, rhsAxisLabels))); } { List<String> lhsUomLabels; lhsUomLabels = leftObject.getUomLabels(); List<String> rhsUomLabels; rhsUomLabels = rightObject.getUomLabels(); target.unsetUomLabels(); List<String> uniqueUomLabelsl = target.getUomLabels(); uniqueUomLabelsl.addAll(((List<String> ) strategy.merge(LocatorUtils.property(leftLocator, "uomLabels", lhsUomLabels), LocatorUtils.property(rightLocator, "uomLabels", rhsUomLabels), lhsUomLabels, rhsUomLabels))); } } } public void setValue(List<Double> value) { List<Double> draftl = this.getValue(); draftl.addAll(value); } public void setAxisLabels(List<String> value) { List<String> draftl = this.getAxisLabels(); draftl.addAll(value); } public void setUomLabels(List<String> value) { List<String> draftl = this.getUomLabels(); draftl.addAll(value); } public DirectPositionListType withValue(Double... values) { if (values!= null) { for (Double value: values) { getValue().add(value); } } return this; } public DirectPositionListType withValue(Collection<Double> values) { if (values!= null) { getValue().addAll(values); } return this; } public DirectPositionListType withCount(BigInteger value) { setCount(value); return this; } public DirectPositionListType withSrsName(String value) { setSrsName(value); return this; } public DirectPositionListType withSrsDimension(BigInteger value) { setSrsDimension(value); return this; } public DirectPositionListType withAxisLabels(String... values) { if (values!= null) { for (String value: values) { getAxisLabels().add(value); } } return this; } public DirectPositionListType withAxisLabels(Collection<String> values) { if (values!= null) { getAxisLabels().addAll(values); } return this; } public DirectPositionListType withUomLabels(String... values) { if (values!= null) { for (String value: values) { getUomLabels().add(value); } } return this; } public DirectPositionListType withUomLabels(Collection<String> values) { if (values!= null) { getUomLabels().addAll(values); } return this; } public DirectPositionListType withValue(List<Double> value) { setValue(value); return this; } public DirectPositionListType withAxisLabels(List<String> value) { setAxisLabels(value); return this; } public DirectPositionListType withUomLabels(List<String> value) { setUomLabels(value); return this; } }