Source Code Cross Referenced for LikeFilter.java in  » GIS » GeoTools-2.4.1 » org » geotools » filter » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.filter 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *    GeoTools - OpenSource mapping toolkit
003:         *    http://geotools.org
004:         *    (C) 2002-2006, GeoTools Project Managment Committee (PMC)
005:         *
006:         *    This library is free software; you can redistribute it and/or
007:         *    modify it under the terms of the GNU Lesser General Public
008:         *    License as published by the Free Software Foundation;
009:         *    version 2.1 of the License.
010:         *
011:         *    This library is distributed in the hope that it will be useful,
012:         *    but WITHOUT ANY WARRANTY; without even the implied warranty of
013:         *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014:         *    Lesser General Public License for more details.
015:         */
016:        package org.geotools.filter;
017:
018:        import org.opengis.filter.PropertyIsLike;
019:        import org.geotools.feature.Feature;
020:
021:        /**
022:         * Defines a like filter, which checks to see if an attribute matches a REGEXP.
023:         *
024:         * @author Rob Hranac, Vision for New York
025:         * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/api/src/main/java/org/geotools/filter/LikeFilter.java $
026:         * @version $Id: LikeFilter.java 22294 2006-10-20 00:55:40Z desruisseaux $
027:         *
028:         * @deprecated use {@link org.opengis.filter.PropertyIsLike}
029:         */
030:        public interface LikeFilter extends Filter, PropertyIsLike {
031:            /**
032:             * Sets the match pattern for this FilterLike.
033:             *
034:             * @param pattern The string which contains the match pattern for this
035:             *        filter.
036:             * @param wildcardMulti The string that represents a mulitple character
037:             *        (1->n) wildcard.
038:             * @param wildcardSingle The string that represents a single character (1)
039:             *        wildcard.
040:             * @param escape The string that represents an escape character.
041:             *
042:             * @deprecated use one of
043:             *         {@link PropertyIsLike#setExpression(Expression)}
044:             *         {@link PropertyIsLike#setWildCard(String)}
045:             *         {@link PropertyIsLike#setSingleChar(String)}
046:             *         {@link PropertyIsLike#setEscape(String)}
047:             */
048:            void setPattern(String pattern, String wildcardMulti,
049:                    String wildcardSingle, String escape);
050:
051:            /**
052:             * Getter for property wildcardMulti.
053:             *
054:             * @return Value of property wildcardMulti.
055:             *
056:             * @deprecated use {@link PropertyIsLike#getWildCard()}
057:             */
058:            String getWildcardMulti();
059:
060:            /**
061:             * Accessor for property escape.
062:             *
063:             * @return Value of property escape.
064:             *
065:             * @deprecated use {@link PropertyIsLike#getEscape()}
066:             */
067:            String getEscape();
068:
069:            /**
070:             * Sets the match pattern for this FilterLike.
071:             *
072:             * @param p The expression which evaluates to the match pattern for this
073:             *        filter.
074:             * @param wildcardMulti The string that represents a mulitple character
075:             *        (1->n) wildcard.
076:             * @param wildcardSingle the string that represents a single character (1)
077:             *        wildcard.
078:             * @param escape The string that represents an escape character.
079:             *
080:             * @deprecated use one of
081:             *         {@link PropertyIsLike#setExpression(Expression)}
082:             *         {@link PropertyIsLike#setWildCard(String)}
083:             *         {@link PropertyIsLike#setSingleChar(String)}
084:             *         {@link PropertyIsLike#setEscape(String)}
085:             *
086:             */
087:            void setPattern(Expression p, String wildcardMulti,
088:                    String wildcardSingle, String escape);
089:
090:            /**
091:             * Accessor method to retrieve the pattern.
092:             *
093:             * @return the pattern being matched.
094:             *
095:             * @deprecated use {@link PropertyIsLike#getLiteral()}
096:             */
097:            String getPattern();
098:
099:            /**
100:             * Sets the expression to be evalutated as being like the pattern.
101:             *
102:             * @param attribute The value of the attribute for comparison.
103:             *
104:             * @throws IllegalFilterException Filter is illegal, adding something other
105:             *         than a string attribute.
106:             * @deprecated use {@link PropertyIsLike#setExpression(Expression)}
107:             */
108:            void setValue(Expression attribute) throws IllegalFilterException;
109:
110:            /**
111:             * Gets the Value (left hand side) of this filter.
112:             *
113:             * @return The expression that is the value of the filter.
114:             *
115:             * @deprecated use {@link PropertyIsLike#getExpression()}
116:             */
117:            Expression getValue();
118:
119:            /**
120:             * Accessor for property wildcardSingle.
121:             *
122:             * @return Value of property wildcardSingle.
123:             *
124:             * @deprecated use {@link PropertyIsLike#getSingleChar()()}
125:             */
126:            String getWildcardSingle();
127:
128:            /**
129:             * Determines whether or not a given feature matches this pattern.
130:             *
131:             * @param feature Specified feature to examine.
132:             *
133:             * @return Flag confirming whether or not this feature is inside the
134:             *         filter.
135:             *
136:             * @task REVISIT: could the pattern be null such that a null = null?
137:             * @deprecated use {@link org.opengis.filter.Filter#evaluate(Feature)}
138:             */
139:            boolean contains(Feature feature);
140:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.