/** * * 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.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; /** * The method for identifying a temporal position is specific to each temporal reference system. gml:TimePositionType supports the description of temporal position according to the subtypes described in ISO 19108. * Values based on calendars and clocks use lexical formats that are based on ISO 8601, as described in XML Schema Part 2:2001. A decimal value may be used with coordinate systems such as GPS time or UNIX time. A URI may be used to provide a reference to some era in an ordinal reference system . * In common with many of the components modelled as data types in the ISO 19100 series of International Standards, the corresponding GML component has simple content. However, the content model gml:TimePositionType is defined in several steps. * Three XML attributes appear on gml:TimePositionType: * A time value shall be associated with a temporal reference system through the frame attribute that provides a URI reference that identifies a description of the reference system. Following ISO 19108, the Gregorian calendar with UTC is the default reference system, but others may also be used. Components for describing temporal reference systems are described in 14.4, but it is not required that the reference system be described in this, as the reference may refer to anything that may be indentified with a URI. * For time values using a calendar containing more than one era, the (optional) calendarEraName attribute provides the name of the calendar era. * Inexact temporal positions may be expressed using the optional indeterminatePosition attribute. This takes a value from an enumeration. * * <p>Classe Java per TimePositionType complex type. * * <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. * * <pre> * <complexType name="TimePositionType"> * <simpleContent> * <extension base="<http://www.opengis.net/gml>TimePositionUnion"> * <attribute name="frame" type="{http://www.w3.org/2001/XMLSchema}anyURI" default="#ISO-8601" /> * <attribute name="calendarEraName" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="indeterminatePosition" type="{http://www.opengis.net/gml}TimeIndeterminateValueType" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TimePositionType", propOrder = { "value" }) public class TimePositionType implements Cloneable, CopyTo, Equals, HashCode, MergeFrom, ToString { @XmlValue protected List<String> value; @XmlAttribute(name = "frame") @XmlSchemaType(name = "anyURI") protected String frame; @XmlAttribute(name = "calendarEraName") protected String calendarEraName; @XmlAttribute(name = "indeterminatePosition") protected TimeIndeterminateValueType indeterminatePosition; /** * The simple type gml:TimePositionUnion is a union of XML Schema simple types which instantiate the subtypes for temporal position described in ISO 19108. * An ordinal era may be referenced via URI. A decimal value may be used to indicate the distance from the scale origin . time is used for a position that recurs daily (see ISO 19108:2002 5.4.4.2). * Finally, calendar and clock forms that support the representation of time in systems based on years, months, days, hours, minutes and seconds, in a notation following ISO 8601, are assembled by gml:CalDate 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 String } * * */ public List<String> getValue() { if (value == null) { value = new ArrayList<String>(); } return this.value; } public boolean isSetValue() { return ((this.value!= null)&&(!this.value.isEmpty())); } public void unsetValue() { this.value = null; } /** * Recupera il valore della proprietà frame. * * @return * possible object is * {@link String } * */ public String getFrame() { if (frame == null) { return "#ISO-8601"; } else { return frame; } } /** * Imposta il valore della proprietà frame. * * @param value * allowed object is * {@link String } * */ public void setFrame(String value) { this.frame = value; } public boolean isSetFrame() { return (this.frame!= null); } /** * Recupera il valore della proprietà calendarEraName. * * @return * possible object is * {@link String } * */ public String getCalendarEraName() { return calendarEraName; } /** * Imposta il valore della proprietà calendarEraName. * * @param value * allowed object is * {@link String } * */ public void setCalendarEraName(String value) { this.calendarEraName = value; } public boolean isSetCalendarEraName() { return (this.calendarEraName!= null); } /** * Recupera il valore della proprietà indeterminatePosition. * * @return * possible object is * {@link TimeIndeterminateValueType } * */ public TimeIndeterminateValueType getIndeterminatePosition() { return indeterminatePosition; } /** * Imposta il valore della proprietà indeterminatePosition. * * @param value * allowed object is * {@link TimeIndeterminateValueType } * */ public void setIndeterminatePosition(TimeIndeterminateValueType value) { this.indeterminatePosition = value; } public boolean isSetIndeterminatePosition() { return (this.indeterminatePosition!= 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<String> theValue; theValue = this.getValue(); strategy.appendField(locator, this, "value", buffer, theValue); } { String theFrame; theFrame = this.getFrame(); strategy.appendField(locator, this, "frame", buffer, theFrame); } { String theCalendarEraName; theCalendarEraName = this.getCalendarEraName(); strategy.appendField(locator, this, "calendarEraName", buffer, theCalendarEraName); } { TimeIndeterminateValueType theIndeterminatePosition; theIndeterminatePosition = this.getIndeterminatePosition(); strategy.appendField(locator, this, "indeterminatePosition", buffer, theIndeterminatePosition); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof TimePositionType)) { return false; } if (this == object) { return true; } final TimePositionType that = ((TimePositionType) object); { List<String> lhsValue; lhsValue = this.getValue(); List<String> rhsValue; rhsValue = that.getValue(); if (!strategy.equals(LocatorUtils.property(thisLocator, "value", lhsValue), LocatorUtils.property(thatLocator, "value", rhsValue), lhsValue, rhsValue)) { return false; } } { String lhsFrame; lhsFrame = this.getFrame(); String rhsFrame; rhsFrame = that.getFrame(); if (!strategy.equals(LocatorUtils.property(thisLocator, "frame", lhsFrame), LocatorUtils.property(thatLocator, "frame", rhsFrame), lhsFrame, rhsFrame)) { return false; } } { String lhsCalendarEraName; lhsCalendarEraName = this.getCalendarEraName(); String rhsCalendarEraName; rhsCalendarEraName = that.getCalendarEraName(); if (!strategy.equals(LocatorUtils.property(thisLocator, "calendarEraName", lhsCalendarEraName), LocatorUtils.property(thatLocator, "calendarEraName", rhsCalendarEraName), lhsCalendarEraName, rhsCalendarEraName)) { return false; } } { TimeIndeterminateValueType lhsIndeterminatePosition; lhsIndeterminatePosition = this.getIndeterminatePosition(); TimeIndeterminateValueType rhsIndeterminatePosition; rhsIndeterminatePosition = that.getIndeterminatePosition(); if (!strategy.equals(LocatorUtils.property(thisLocator, "indeterminatePosition", lhsIndeterminatePosition), LocatorUtils.property(thatLocator, "indeterminatePosition", rhsIndeterminatePosition), lhsIndeterminatePosition, rhsIndeterminatePosition)) { 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<String> theValue; theValue = this.getValue(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "value", theValue), currentHashCode, theValue); } { String theFrame; theFrame = this.getFrame(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "frame", theFrame), currentHashCode, theFrame); } { String theCalendarEraName; theCalendarEraName = this.getCalendarEraName(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "calendarEraName", theCalendarEraName), currentHashCode, theCalendarEraName); } { TimeIndeterminateValueType theIndeterminatePosition; theIndeterminatePosition = this.getIndeterminatePosition(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "indeterminatePosition", theIndeterminatePosition), currentHashCode, theIndeterminatePosition); } 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 TimePositionType) { final TimePositionType copy = ((TimePositionType) draftCopy); if (this.isSetValue()) { List<String> sourceValue; sourceValue = this.getValue(); @SuppressWarnings("unchecked") List<String> copyValue = ((List<String> ) strategy.copy(LocatorUtils.property(locator, "value", sourceValue), sourceValue)); copy.unsetValue(); List<String> uniqueValuel = copy.getValue(); uniqueValuel.addAll(copyValue); } else { copy.unsetValue(); } if (this.isSetFrame()) { String sourceFrame; sourceFrame = this.getFrame(); String copyFrame = ((String) strategy.copy(LocatorUtils.property(locator, "frame", sourceFrame), sourceFrame)); copy.setFrame(copyFrame); } else { copy.frame = null; } if (this.isSetCalendarEraName()) { String sourceCalendarEraName; sourceCalendarEraName = this.getCalendarEraName(); String copyCalendarEraName = ((String) strategy.copy(LocatorUtils.property(locator, "calendarEraName", sourceCalendarEraName), sourceCalendarEraName)); copy.setCalendarEraName(copyCalendarEraName); } else { copy.calendarEraName = null; } if (this.isSetIndeterminatePosition()) { TimeIndeterminateValueType sourceIndeterminatePosition; sourceIndeterminatePosition = this.getIndeterminatePosition(); TimeIndeterminateValueType copyIndeterminatePosition = ((TimeIndeterminateValueType) strategy.copy(LocatorUtils.property(locator, "indeterminatePosition", sourceIndeterminatePosition), sourceIndeterminatePosition)); copy.setIndeterminatePosition(copyIndeterminatePosition); } else { copy.indeterminatePosition = null; } } return draftCopy; } public Object createNewInstance() { return new TimePositionType(); } 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 TimePositionType) { final TimePositionType target = this; final TimePositionType leftObject = ((TimePositionType) left); final TimePositionType rightObject = ((TimePositionType) right); { List<String> lhsValue; lhsValue = leftObject.getValue(); List<String> rhsValue; rhsValue = rightObject.getValue(); target.unsetValue(); List<String> uniqueValuel = target.getValue(); uniqueValuel.addAll(((List<String> ) strategy.merge(LocatorUtils.property(leftLocator, "value", lhsValue), LocatorUtils.property(rightLocator, "value", rhsValue), lhsValue, rhsValue))); } { String lhsFrame; lhsFrame = leftObject.getFrame(); String rhsFrame; rhsFrame = rightObject.getFrame(); target.setFrame(((String) strategy.merge(LocatorUtils.property(leftLocator, "frame", lhsFrame), LocatorUtils.property(rightLocator, "frame", rhsFrame), lhsFrame, rhsFrame))); } { String lhsCalendarEraName; lhsCalendarEraName = leftObject.getCalendarEraName(); String rhsCalendarEraName; rhsCalendarEraName = rightObject.getCalendarEraName(); target.setCalendarEraName(((String) strategy.merge(LocatorUtils.property(leftLocator, "calendarEraName", lhsCalendarEraName), LocatorUtils.property(rightLocator, "calendarEraName", rhsCalendarEraName), lhsCalendarEraName, rhsCalendarEraName))); } { TimeIndeterminateValueType lhsIndeterminatePosition; lhsIndeterminatePosition = leftObject.getIndeterminatePosition(); TimeIndeterminateValueType rhsIndeterminatePosition; rhsIndeterminatePosition = rightObject.getIndeterminatePosition(); target.setIndeterminatePosition(((TimeIndeterminateValueType) strategy.merge(LocatorUtils.property(leftLocator, "indeterminatePosition", lhsIndeterminatePosition), LocatorUtils.property(rightLocator, "indeterminatePosition", rhsIndeterminatePosition), lhsIndeterminatePosition, rhsIndeterminatePosition))); } } } public void setValue(List<String> value) { List<String> draftl = this.getValue(); draftl.addAll(value); } public TimePositionType withValue(String... values) { if (values!= null) { for (String value: values) { getValue().add(value); } } return this; } public TimePositionType withValue(Collection<String> values) { if (values!= null) { getValue().addAll(values); } return this; } public TimePositionType withFrame(String value) { setFrame(value); return this; } public TimePositionType withCalendarEraName(String value) { setCalendarEraName(value); return this; } public TimePositionType withIndeterminatePosition(TimeIndeterminateValueType value) { setIndeterminatePosition(value); return this; } public TimePositionType withValue(List<String> value) { setValue(value); return this; } }