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
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
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
 * as published by the Free Software Foundation; either version 3
9
 * 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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
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
 *
62
 * @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
         *
69
         * @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
         *
76
         * @param attributeNames
77
         *            the attribute names to load
78
         */
79
        void setAttributeNames(String[] attributeNames);
80

    
81
        /**
82
         * Adds the name of an attribute that has to be used to load each
83
         * {@link Feature}.
84
         *
85
         * @param attributeName
86
         *             the attribute name to load
87
         */
88
        void addAttributeName(String attributeName);
89

    
90
        /**
91
         * Return true if has set attribute names
92
         *
93
         * @return true if has attribute names, otherwise false
94
         */
95
        boolean hasAttributeNames();
96

    
97
        /**
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
         *
106
         * @return the attribute names that are constant
107
         */
108
        String[] getConstantsAttributeNames();
109

    
110
        /**
111
         * Set of attribute names to be treated as constants for each {@link Feature}.
112
         *
113
         * @param attributeNames
114
         *            the attribute names to be constants
115
         */
116
        void setConstantsAttributeNames(String[] attributeNames);
117

    
118
        /**
119
         * Add an attribute name that will be treated as constant for each
120
         * {@link Feature}.
121
         *
122
         * @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
         *
130
         * @return true if has constants attribute names, otherwise false
131
         */
132
        boolean hasConstantsAttributeNames();
133

    
134
        /**
135
         * Remove all the names specified as constants attributes.
136
         */
137
        void clearConstantsAttributeNames();
138

    
139
        /**
140
         * 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
         *
144
         * @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
         *
152
         * @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
         *
160
         * @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
         *
168
         * @return the filter
169
         */
170
        Evaluator getFilter();
171

    
172
        /**
173
         * Sets the filter to apply to the {@link Feature}s to load.
174
         *
175
         * @param filter
176
         *            the filter to apply to the {@link Feature}s to load
177
         */
178
        void setFilter(Evaluator filter);
179

    
180
        void setFilter(String filter);
181

    
182
        /**
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
         * If filter is null do nothing.
187
         *
188
         * @param filter
189
         *             a filter to apply to the {@link Feature}s to load
190
         */
191
        void addFilter(Evaluator filter);
192

    
193
        void addFilter(String filter);
194

    
195
        void clearFilter();
196
        
197
        /**
198
         * Returns if a filter has been defined for the query.
199
         *
200
         * @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
         *
207
         * @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
         *
214
         * @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
         *
222
         * @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
         *
240
         * @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
         *
252
         * @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
         *
263
         * @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
         *
273
         * @param pageSize
274
         *            the load page size
275
         */
276
        void setPageSize(long pageSize);
277
}