Statistics
| Revision:

svn-gvsig-desktop / branches / v02_desarrollo / libraries / sld / temp / org.gvsig.sldsupport.lib.api / oldcode / filterencoding / FilterTags.java @ 40781

History | View | Annotate | Download (4.88 KB)

1
/* gvSIG. Sistema de Informaci�n Geogr�fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib��ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package org.gvsig.sldsupport.filterencoding;
42

    
43
/**
44
 * Tags for Filter Encoding 
45
 * 
46
 * @see http://www.opengeospatial.org/standards/filter
47
 * @author pepe vidal salvador - jose.vidal.salvador@iver.es
48
 */
49
public class FilterTags {
50

    
51

    
52
        public final static String FILTER = "ogc:Filter";
53
        public final static String NAME="Name";
54

    
55
        public final static String PROPERTYISEQUALTO = "ogc:PropertyIsEqualTo";
56
        public final static String PROPERTYISNOTEQUALTO = "ogc:PropertyIsNotEqualTo";
57
        public final static String PROPERTYISLESSTHAN = "ogc:PropertyIsLessThan";
58
        public final static String PROPERTYISLESSOREQUALTHAN = "ogc:PropertyIsLessThanOrEqualTo";
59
        public final static String PROPERTYISGREATERTHAN = "ogc:PropertyIsGreaterThan";
60
        public final static String PROPERTYISGREATEROREQUALTHAN = "ogc:PropertyIsGreaterThanOrEqualTo";
61
        public final static String PROPERTYISLIKE = "ogc:PropertyIsLike";
62
        public final static String PROPERTYISNULL = "ogc:PropertyIsNull";
63
        public final static String PROPERTYISBETWEEN = "ogc:PropertyIsBetween";
64
        public final static String PROPERTYFEATUREID = "ogc:FeatureId";
65
        public static final String PROPERTYNAME = "ogc:PropertyName";
66

    
67
        public final static String EQUALS = "Equals";
68
        public final static String DISJOINT= "Disjoint";
69
        public final static String INTERSECTS = "Intersects";
70
        public final static String TOUCHES = "Touches";
71
        public final static String CROSSES = "Corsses";
72
        public final static String WITHIN = "Within";
73
        public static final String DWITHIN = "DWithin";
74
        public final static String CONTAINS = "Contains";
75
        public final static String OVERLAPS = "Overlaps";
76
        public final static String BEYOND = "Beyond";
77
        public final static String BBOX = "BBOX";
78

    
79
        public final static String AND = "ogc:And";
80
        public final static String NOT = "ogc:Not";
81
        public final static String OR = "ogc:Or";
82

    
83
        public static final String ADD = "ogc:Add";
84
        public static final String SUB = "ogc:Sub";
85
        public static final String MULT = "ogc:Mult";
86
        public static final String DIV = "ogc:Div";
87

    
88
        public final static String LITERAL = "ogc:Literal";
89
        public static final String LITERAL_ATTR = "literal";
90
        public static final String EXPRESSION = "Expression";
91
        public static final String FUNCTION = "Function";
92
        public static final String LOWER_BOUNDARY = "LowerBoundary";
93
        public static final String UPPER_BOUNDARY = "UpperBoundary";
94
        public static final String WILDCHAR = "wildChar";
95
        public static final String SINGLECHAR = "singleChar";
96
        public static final String ESCAPECHAR = "escapeChar";
97

    
98
        public static final String ENVELOPE = "Envelope";
99

    
100
        //Geometries
101
        public static final String GML_POINT = "Point";
102
        public static final String GML_LINESTRING = "LineString";
103
        public static final String GML_LINEARRING = "LinearRing";
104
        public static final String GML_POLYGON = "Polygon";
105
        public static final String GML_MULTIPOINT = "MultiPoint";
106
        public static final String GML_MULTILINESTRING = "MultiLineString";
107
        public static final String GML_MULTIPOLYGON = "MultiPolygon";
108
        public static final String GML_MULTIGEOMETRY = "MultiGeometry";
109
        public static final String GML_POINTPROPERTY = "pointProperty";
110
        public static final String GML_LINESTRINGPROPERTY = "lineStringProperty";
111
        public static final String GML_POLYGONPROPERTY = "polygonProperty";
112
        public static final String GML_GEOMETRYPROPERTY = "geometryProperty";
113
        public static final String GML_MULTIPOINTPROPERTY = "multiPointProperty";
114
        public static final String GML_MULTILINESTRINGPROPERTY = "multiLineStringProperty";
115
        public static final String GML_MULTIPOLYGONPROPERTY = "multiPolygonProperty";
116
        public static final String GML_MULTIGEOMETRYPROPERTY = "multiGeometryProperty";
117

    
118
}