/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. */ package org.geotoolkit.swe.xml.v101; import java.util.ArrayList; import java.util.List; import java.util.Objects; 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.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlList; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <choice> * <element name="min" type="{http://www.opengis.net/swe/1.0.1}timePositionType"/> * <element name="max" type="{http://www.opengis.net/swe/1.0.1}timePositionType"/> * </choice> * <choice maxOccurs="unbounded"> * <element name="interval" type="{http://www.opengis.net/swe/1.0.1}timePair"/> * <element name="valueList" type="{http://www.opengis.net/swe/1.0.1}timeList"/> * </choice> * </choice> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "min", "max", "intervalOrValueList" }) @XmlRootElement(name = "AllowedTimes") public class AllowedTimes { @XmlList private List<String> min; @XmlList private List<String> max; @XmlElementRefs({ @XmlElementRef(name = "interval", namespace = "http://www.opengis.net/swe/1.0.1", type = JAXBElement.class), @XmlElementRef(name = "valueList", namespace = "http://www.opengis.net/swe/1.0.1", type = JAXBElement.class) }) private List<JAXBElement<List<String>>> intervalOrValueList; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") private String id; /** * Gets the value of the min property. */ public List<String> getMin() { if (min == null) { min = new ArrayList<String>(); } return this.min; } /** * Gets the value of the max property. */ public List<String> getMax() { if (max == null) { max = new ArrayList<String>(); } return this.max; } /** * Gets the value of the intervalOrValueList property. * */ public List<JAXBElement<List<String>>> getIntervalOrValueList() { if (intervalOrValueList == null) { intervalOrValueList = new ArrayList<JAXBElement<List<String>>>(); } return this.intervalOrValueList; } /** * Gets the value of the id property. */ public String getId() { return id; } /** * Sets the value of the id property. */ public void setId(final String value) { this.id = value; } /** * Verify that the object is identical to the specified object. */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof AllowedTimes) { final AllowedTimes that = (AllowedTimes) object; boolean intervalOrValue = false; if (this.intervalOrValueList != null && that.intervalOrValueList != null) { if (this.intervalOrValueList.size() != that.intervalOrValueList.size()) { intervalOrValue = false; } else { intervalOrValue = true; for (int i = 0; i < this.intervalOrValueList.size(); i++) { JAXBElement<List<String>> thisJB = this.intervalOrValueList.get(i); JAXBElement<List<String>> thatJB = that.intervalOrValueList.get(i); if (!Objects.equals(thisJB.getValue(), thatJB.getValue())) { intervalOrValue = false; } } } } else if (this.intervalOrValueList == null && that.intervalOrValueList == null) { intervalOrValue = true; } return Objects.equals(this.id, that.id) && Objects.equals(this.max, that.max) && Objects.equals(this.min, that.min) && intervalOrValue; } return false; } @Override public int hashCode() { int hash = 7; hash = 53 * hash + (this.min != null ? this.min.hashCode() : 0); hash = 53 * hash + (this.max != null ? this.max.hashCode() : 0); hash = 53 * hash + (this.intervalOrValueList != null ? this.intervalOrValueList.hashCode() : 0); hash = 53 * hash + (this.id != null ? this.id.hashCode() : 0); return hash; } }