/* * 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.ogc.xml.v110; import java.util.*; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.opengis.filter.capability.SpatialOperator; import org.opengis.filter.capability.SpatialOperators; /** * <p>Java class for SpatialOperatorsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SpatialOperatorsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="SpatialOperator" type="{http://www.opengis.net/ogc}SpatialOperatorType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SpatialOperatorsType", propOrder = { "spatialOperator" }) public class SpatialOperatorsType implements SpatialOperators { @XmlElement(name = "SpatialOperator", required = true) private List<SpatialOperatorType> spatialOperator; /** * An empty constructor used by JAXB */ public SpatialOperatorsType() { } /** * Build a new comparison operators with the specified array of operator * * @param operators an array of comparison operator */ public SpatialOperatorsType( SpatialOperator[] operators ) { if ( operators == null ){ operators = new SpatialOperator[]{}; } this.spatialOperator = new ArrayList(Arrays.asList(operators)); } /** * Gets the value of the spatialOperator property. */ @Override public Collection<SpatialOperator> getOperators() { final List<SpatialOperator> result = new ArrayList<>(); if (spatialOperator == null) { spatialOperator = new ArrayList<>(); return result; } else { for (SpatialOperatorType c: spatialOperator) { result.add(c); } } return result; } @Override public SpatialOperator getOperator(final String name) { if ( name == null || spatialOperator == null) { return null; } for (SpatialOperator operator : spatialOperator ) { if ( name.equals( operator.getName() ) ) { return operator; } } return null; } @Override public String toString() { final StringBuilder sb = new StringBuilder("[SpatialOperatorsType]").append("\n"); if (spatialOperator != null) { sb.append("spatialOperator:\n"); for (SpatialOperatorType q: spatialOperator) { sb.append(q).append('\n'); } } return sb.toString(); } /** * Verify if this entry is identical to specified object. */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof SpatialOperatorsType) { final SpatialOperatorsType that = (SpatialOperatorsType) object; return Objects.equals(this.spatialOperator, that.spatialOperator); } return false; } @Override public int hashCode() { int hash = 5; hash = 89 * hash + (this.spatialOperator != null ? this.spatialOperator.hashCode() : 0); return hash; } }