Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / feature / FeatureQuery.java @ 42975

History | View | Annotate | Download (8.1 KB)

1 40559 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40559 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5 40435 jjdelcerro
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40559 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21 40559 jjdelcerro
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23 40435 jjdelcerro
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2008 {DiSiD Technologies}  {Create Parameter object to define FeatureCollections queries}
27
 */
28
package org.gvsig.fmap.dal.feature;
29
30
import org.gvsig.fmap.dal.DataQuery;
31
import org.gvsig.tools.evaluator.Evaluator;
32
import org.gvsig.tools.lang.Cloneable;
33
34
/**
35
 * Defines the properties of a collection of Features, as a result of a query
36
 * through a FeatureStore.
37
 * <p>
38
 * A FeatureQuery is always defined by a FeatureType, or by the list of
39
 * attribute names of the FeatureStore to return.
40
 * </p>
41
 * <p>
42
 * The filter allows to select Features whose properties have values with the
43
 * characteristics defined by the filter.
44
 * </p>
45
 * <p>
46
 * The order is used to set the order of the result FeatureCollection, based on
47
 * the values of the properties of the Features.
48
 * </p>
49
 * <p>
50
 * The scale parameter can be used by the FeatureStore as a hint about the
51
 * quality or resolution of the data needed to view or operate with the data
52
 * returned. As an example, the FeatureStore may use the scale to return only a
53
 * representative subset of the data, or maybe to return Features with less
54
 * detail, like a point or a line instead of a polygon.
55
 * </p>
56
 * <p>
57
 * If an implementation of FeatureStore is able to get other parameters to
58
 * customize the behavior of the getDataCollection methods, there is an option
59
 * to set more parameters through the setAttribute method.
60
 * </p>
61 42975 jjdelcerro
 *
62 40435 jjdelcerro
 * @author 2009- <a href="cordinyana@gvsig.org">C?sar Ordi?ana</a> - gvSIG team
63
 */
64
public interface FeatureQuery extends DataQuery, Cloneable {
65
66
        /**
67
         * Returns the names of the attributes to load from each {@link Feature}.
68 42975 jjdelcerro
         *
69 40435 jjdelcerro
         * @return the attribute names to load
70
         */
71
        String[] getAttributeNames();
72
73
        /**
74
         * Sets the names of the attributes to load from each {@link Feature}.
75 42975 jjdelcerro
         *
76 40435 jjdelcerro
         * @param attributeNames
77
         *            the attribute names to load
78
         */
79
        void setAttributeNames(String[] attributeNames);
80 42975 jjdelcerro
81 40435 jjdelcerro
        /**
82
         * Adds the name of an attribute that has to be used to load each
83
         * {@link Feature}.
84 42975 jjdelcerro
         *
85 40435 jjdelcerro
         * @param attributeName
86
         *             the attribute name to load
87
         */
88
        void addAttributeName(String attributeName);
89
90 41212 jjdelcerro
        /**
91
         * Return true if has set attribute names
92 42975 jjdelcerro
         *
93 41212 jjdelcerro
         * @return true if has attribute names, otherwise false
94
         */
95
        boolean hasAttributeNames();
96 42975 jjdelcerro
97 41212 jjdelcerro
        /**
98
         * Remove all the attribute names specifieds.
99
         */
100
        void clearAttributeNames();
101
102
        /**
103
         * Returns the names of the attributes that are constants in each {@link Feature}.
104
         * These attributes will not be charged.
105 42975 jjdelcerro
         *
106 41212 jjdelcerro
         * @return the attribute names that are constant
107
         */
108
        String[] getConstantsAttributeNames();
109
110 40435 jjdelcerro
        /**
111 41212 jjdelcerro
         * Set of attribute names to be treated as constants for each {@link Feature}.
112 42975 jjdelcerro
         *
113 41212 jjdelcerro
         * @param attributeNames
114
         *            the attribute names to be constants
115
         */
116
        void setConstantsAttributeNames(String[] attributeNames);
117 42975 jjdelcerro
118 41212 jjdelcerro
        /**
119 42975 jjdelcerro
         * Add an attribute name that will be treated as constant for each
120 41212 jjdelcerro
         * {@link Feature}.
121 42975 jjdelcerro
         *
122 41212 jjdelcerro
         * @param attributeName
123
         *             the attribute name to be treated as constant
124
         */
125
        void addConstantAttributeName(String attributeName);
126
127
        /**
128
         * Return true if has set constants attribute names
129 42975 jjdelcerro
         *
130 41212 jjdelcerro
         * @return true if has constants attribute names, otherwise false
131
         */
132
        boolean hasConstantsAttributeNames();
133 42975 jjdelcerro
134 41212 jjdelcerro
        /**
135
         * Remove all the names specified as constants attributes.
136
         */
137
        void clearConstantsAttributeNames();
138 42975 jjdelcerro
139 41212 jjdelcerro
        /**
140 40435 jjdelcerro
         * Sets the {@link FeatureType} of the {@link Feature}s to load. It may be
141
         * used as an alternative way to set a subset of the list of attribute names
142
         * to load, by creating a sub-FeatureType.
143 42975 jjdelcerro
         *
144 40435 jjdelcerro
         * @param featureType
145
         *            the feature type of the data to load
146
         */
147
        void setFeatureType(FeatureType featureType);
148
149
        /**
150
         * Returns the {@link FeatureType} id of the {@link Feature}s to load.
151 42975 jjdelcerro
         *
152 40435 jjdelcerro
         * @return the {@link FeatureType} id of the {@link Feature}s to load
153
         */
154
        String getFeatureTypeId();
155
156
        /**
157
         * Sets the {@link FeatureType} id of the {@link Feature}s to load. This way
158
         * all {@link Feature} attributes will be loaded.
159 42975 jjdelcerro
         *
160 40435 jjdelcerro
         * @param featureTypeId
161
         *            the {@link FeatureType} id of the {@link Feature}s to load
162
         */
163
        void setFeatureTypeId(String featureTypeId);
164
165
        /**
166
         * Returns the filter to apply to the {@link Feature}s to load.
167 42975 jjdelcerro
         *
168 40435 jjdelcerro
         * @return the filter
169
         */
170
        Evaluator getFilter();
171
172
        /**
173
         * Sets the filter to apply to the {@link Feature}s to load.
174 42975 jjdelcerro
         *
175 40435 jjdelcerro
         * @param filter
176
         *            the filter to apply to the {@link Feature}s to load
177
         */
178
        void setFilter(Evaluator filter);
179 42975 jjdelcerro
180 42971 jjdelcerro
        void setFilter(String filter);
181 42975 jjdelcerro
182 40435 jjdelcerro
        /**
183
         * Adds a filter to apply to the {@link Feature}s to load. A query
184
         * can have more that one filter and all of them are applied when
185
         * the query is applied.
186 42795 jjdelcerro
         * If filter is null do nothing.
187 42975 jjdelcerro
         *
188 40435 jjdelcerro
         * @param filter
189
         *             a filter to apply to the {@link Feature}s to load
190
         */
191
        void addFilter(Evaluator filter);
192
193 42971 jjdelcerro
        void addFilter(String filter);
194 42975 jjdelcerro
195
        void clearFilter();
196 42971 jjdelcerro
197 40435 jjdelcerro
        /**
198
         * Returns if a filter has been defined for the query.
199 42975 jjdelcerro
         *
200 40435 jjdelcerro
         * @return if a filter has been defined for the query
201
         */
202
        boolean hasFilter();
203
204
        /**
205
         * Returns the order of the {@link Feature}s to load.
206 42975 jjdelcerro
         *
207 40435 jjdelcerro
         * @return the order of the {@link Feature}s to load
208
         */
209
        FeatureQueryOrder getOrder();
210
211
        /**
212
         * Sets the order of the {@link Feature}s to load.
213 42975 jjdelcerro
         *
214 40435 jjdelcerro
         * @param order
215
         *            the order of the {@link Feature}s to load
216
         */
217
        void setOrder(FeatureQueryOrder order);
218
219
        /**
220
         * Returns if an order has been set for the elements returned by the query.
221 42975 jjdelcerro
         *
222 40435 jjdelcerro
         * @return if an order has been set for the elements returned by the query
223
         */
224
        boolean hasOrder();
225
226
        /**
227
         * @deprecated to be removed in gvSIG 2.0
228
         * @see #clone()
229
         */
230
        FeatureQuery getCopy();
231
232
        /**
233
         * Returns the maximum number of elements to return with this query.
234
         * <p>
235
         * <strong>NOTE:</strong> this value may be ignored by the underlying data
236
         * source, or only used as a hint, so don't rely on it being used, as you
237
         * may actually get more values than the limit.
238
         * </p>
239 42975 jjdelcerro
         *
240 40435 jjdelcerro
         * @return the maximum number of elements to return with this query
241
         */
242
        long getLimit();
243
244
        /**
245
         * Sets the maximum number of elements to return with this query.
246
         * <p>
247
         * <strong>NOTE:</strong> this value may be ignored by the underlying data
248
         * source, or only used as a hint, so don't rely on it being used, as you
249
         * may actually get more values than the limit.
250
         * </p>
251 42975 jjdelcerro
         *
252 40435 jjdelcerro
         * @param limit
253
         *            the maximum number of elements to return with this query
254
         */
255
        void setLimit(long limit);
256
257
        /**
258
         * Returns the load page size, as the number of elements to be retrieved in
259
         * block by the data source. This value is only used as a hint to the
260
         * underlying data source, as a way to tell how many Features may be read in
261
         * a block.
262 42975 jjdelcerro
         *
263 40435 jjdelcerro
         * @return the load page size
264
         */
265
        long getPageSize();
266
267
        /**
268
         * Sets the load page size, as the number of elements to be retrieved in
269
         * block by the data source. This value is only used as a hint to the
270
         * underlying data source, as a way to tell how many Features may be read in
271
         * a block.
272 42975 jjdelcerro
         *
273 40435 jjdelcerro
         * @param pageSize
274
         *            the load page size
275
         */
276
        void setPageSize(long pageSize);
277
}