/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2011, Open Source Geospatial Foundation (OSGeo) * (C) 2005, Open Geospatial Consortium Inc. * * All Rights Reserved. http://www.opengis.org/legal/ */ package org.opengis.filter.spatial; // Annotations import org.opengis.annotation.XmlElement; /** * Concrete {@linkplain BinarySpatialOperator binary spatial operator} that evaluates to * {@code true} if the first operand is disjoint from the second (in the sense defined * in the OGC Simple Features specification). * * * @source $URL: http://svn.osgeo.org/geotools/branches/2.7.x/modules/library/opengis/src/main/java/org/opengis/filter/spatial/Disjoint.java $ * @version <A HREF="http://www.opengis.org/docs/02-059.pdf">Implementation specification 1.0</A> * @author Chris Dillard (SYS Technologies) * @since GeoAPI 2.0 */ @XmlElement("Disjoint") public interface Disjoint extends BinarySpatialOperator { /** Operator name used to check FilterCapabilities */ public static String NAME = "Disjoint"; }