source: osm/applications/editors/josm/plugins/opendata/includes/org/opengis/filter/expression/Divide.java@ 28000

Last change on this file since 28000 was 28000, checked in by donvip, 12 years ago

Import new "opendata" JOSM plugin

File size: 1.2 KB
Line 
1/*
2 * GeoTools - The Open Source Java GIS Toolkit
3 * http://geotools.org
4 *
5 * (C) 2011, Open Source Geospatial Foundation (OSGeo)
6 * (C) 2005, Open Geospatial Consortium Inc.
7 *
8 * All Rights Reserved. http://www.opengis.org/legal/
9 */
10package org.opengis.filter.expression;
11
12// Annotations
13import org.opengis.annotation.XmlElement;
14
15
16/**
17 * Encodes the operation of division where the first argument is divided by the second argument.
18 * <p>
19 * Instances of this interface implement their {@link #evaluate evaluate} method by
20 * computing the numeric quotient resulting from dividing the {@linkplain #getExpression1 first}
21 * operand by the {@linkplain #getExpression2 second}. The second argument or expression cannot
22 * evaluate to zero.
23 * </p>
24 *
25 * @source $URL: http://svn.osgeo.org/geotools/branches/2.7.x/modules/library/opengis/src/main/java/org/opengis/filter/expression/Divide.java $
26 * @version <A HREF="http://www.opengis.org/docs/02-059.pdf">Implementation specification 1.0</A>
27 * @author Chris Dillard (SYS Technologies)
28 * @since GeoAPI 2.0
29 */
30@XmlElement("Div")
31public interface Divide extends BinaryExpression {
32 /** Operator name used to check FilterCapabilities */
33 public static String NAME = "Div"; // NO_UCD
34}
Note: See TracBrowser for help on using the repository browser.