Statistics
| Revision:

svn-gvsig-desktop / branches / v02_desarrollo / libraries / sld / temp / org.gvsig.sldsupport.lib.api / src / main / java / org / gvsig / sldsupport / sld / filter / FilterTags.java @ 40793

History | View | Annotate | Download (5.48 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.sld.filter;
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 = "Filter";
53
        public final static String OGC_FILTER = "ogc:Filter";
54
        
55
        public final static String NAME = "Name";
56

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

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

    
83
        public final static String AND = "And";
84
        public final static String NOT = "Not";
85
        public final static String OR = "Or";
86
        public final static String OGC_AND = "ogc:And";
87
        public final static String OGC_NOT = "ogc:Not";
88
        public final static String OGC_OR = "ogc:Or";
89

    
90
        public static final String ADD = "Add";
91
        public static final String SUB = "Sub";
92
        public static final String MUL = "Mul";
93
        public static final String DIV = "Div";
94
        public static final String OGC_ADD = "ogc:Add";
95
        public static final String OGC_SUB = "ogc:Sub";
96
        public static final String OGC_MUL = "ogc:Mul";
97
        public static final String OGC_DIV = "ogc:Div";
98

    
99
        public final static String LITERAL = "Literal";
100
        public final static String OGC_LITERAL = "ogc:Literal";
101
        
102
        public static final String LITERAL_ATTR = "literal";
103
        public static final String EXPRESSION = "Expression";
104
        public static final String FUNCTION = "Function";
105
        public static final String LOWER_BOUNDARY = "LowerBoundary";
106
        public static final String UPPER_BOUNDARY = "UpperBoundary";
107
        public static final String WILDCHAR = "wildChar";
108
        public static final String SINGLECHAR = "singleChar";
109
        public static final String ESCAPECHAR = "escapeChar";
110

    
111
        public static final String ENVELOPE = "Envelope";
112
        public static final String LOWER_CORNER = "lowerCorner";
113
        public static final String UPPER_CORNER = "upperCorner";
114

    
115
        //Geometries
116
        public static final String GML_POINT = "Point";
117
        public static final String GML_LINESTRING = "LineString";
118
        public static final String GML_LINEARRING = "LinearRing";
119
        public static final String GML_POLYGON = "Polygon";
120
        public static final String GML_MULTIPOINT = "MultiPoint";
121
        public static final String GML_MULTILINESTRING = "MultiLineString";
122
        public static final String GML_MULTIPOLYGON = "MultiPolygon";
123
        public static final String GML_MULTIGEOMETRY = "MultiGeometry";
124
        public static final String GML_POINTPROPERTY = "pointProperty";
125
        public static final String GML_LINESTRINGPROPERTY = "lineStringProperty";
126
        public static final String GML_POLYGONPROPERTY = "polygonProperty";
127
        public static final String GML_GEOMETRYPROPERTY = "geometryProperty";
128
        public static final String GML_MULTIPOINTPROPERTY = "multiPointProperty";
129
        public static final String GML_MULTILINESTRINGPROPERTY = "multiLineStringProperty";
130
        public static final String GML_MULTIPOLYGONPROPERTY = "multiPolygonProperty";
131
        public static final String GML_MULTIGEOMETRYPROPERTY = "multiGeometryProperty";
132

    
133
}