1
14
15 package com.liferay.portlet.expando.service.persistence;
16
17 import com.liferay.portal.service.persistence.BasePersistence;
18
19 import com.liferay.portlet.expando.model.ExpandoValue;
20
21
34 public interface ExpandoValuePersistence extends BasePersistence<ExpandoValue> {
35 public void cacheResult(
36 com.liferay.portlet.expando.model.ExpandoValue expandoValue);
37
38 public void cacheResult(
39 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> expandoValues);
40
41 public com.liferay.portlet.expando.model.ExpandoValue create(long valueId);
42
43 public com.liferay.portlet.expando.model.ExpandoValue remove(long valueId)
44 throws com.liferay.portal.SystemException,
45 com.liferay.portlet.expando.NoSuchValueException;
46
47
50 public com.liferay.portlet.expando.model.ExpandoValue update(
51 com.liferay.portlet.expando.model.ExpandoValue expandoValue)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portlet.expando.model.ExpandoValue updateImpl(
55 com.liferay.portlet.expando.model.ExpandoValue expandoValue,
56 boolean merge) throws com.liferay.portal.SystemException;
57
58 public com.liferay.portlet.expando.model.ExpandoValue findByPrimaryKey(
59 long valueId)
60 throws com.liferay.portal.SystemException,
61 com.liferay.portlet.expando.NoSuchValueException;
62
63 public com.liferay.portlet.expando.model.ExpandoValue fetchByPrimaryKey(
64 long valueId) throws com.liferay.portal.SystemException;
65
66 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTableId(
67 long tableId) throws com.liferay.portal.SystemException;
68
69 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTableId(
70 long tableId, int start, int end)
71 throws com.liferay.portal.SystemException;
72
73 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTableId(
74 long tableId, int start, int end,
75 com.liferay.portal.kernel.util.OrderByComparator obc)
76 throws com.liferay.portal.SystemException;
77
78 public com.liferay.portlet.expando.model.ExpandoValue findByTableId_First(
79 long tableId, com.liferay.portal.kernel.util.OrderByComparator obc)
80 throws com.liferay.portal.SystemException,
81 com.liferay.portlet.expando.NoSuchValueException;
82
83 public com.liferay.portlet.expando.model.ExpandoValue findByTableId_Last(
84 long tableId, com.liferay.portal.kernel.util.OrderByComparator obc)
85 throws com.liferay.portal.SystemException,
86 com.liferay.portlet.expando.NoSuchValueException;
87
88 public com.liferay.portlet.expando.model.ExpandoValue[] findByTableId_PrevAndNext(
89 long valueId, long tableId,
90 com.liferay.portal.kernel.util.OrderByComparator obc)
91 throws com.liferay.portal.SystemException,
92 com.liferay.portlet.expando.NoSuchValueException;
93
94 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByColumnId(
95 long columnId) throws com.liferay.portal.SystemException;
96
97 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByColumnId(
98 long columnId, int start, int end)
99 throws com.liferay.portal.SystemException;
100
101 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByColumnId(
102 long columnId, int start, int end,
103 com.liferay.portal.kernel.util.OrderByComparator obc)
104 throws com.liferay.portal.SystemException;
105
106 public com.liferay.portlet.expando.model.ExpandoValue findByColumnId_First(
107 long columnId, com.liferay.portal.kernel.util.OrderByComparator obc)
108 throws com.liferay.portal.SystemException,
109 com.liferay.portlet.expando.NoSuchValueException;
110
111 public com.liferay.portlet.expando.model.ExpandoValue findByColumnId_Last(
112 long columnId, com.liferay.portal.kernel.util.OrderByComparator obc)
113 throws com.liferay.portal.SystemException,
114 com.liferay.portlet.expando.NoSuchValueException;
115
116 public com.liferay.portlet.expando.model.ExpandoValue[] findByColumnId_PrevAndNext(
117 long valueId, long columnId,
118 com.liferay.portal.kernel.util.OrderByComparator obc)
119 throws com.liferay.portal.SystemException,
120 com.liferay.portlet.expando.NoSuchValueException;
121
122 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByRowId(
123 long rowId) throws com.liferay.portal.SystemException;
124
125 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByRowId(
126 long rowId, int start, int end)
127 throws com.liferay.portal.SystemException;
128
129 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByRowId(
130 long rowId, int start, int end,
131 com.liferay.portal.kernel.util.OrderByComparator obc)
132 throws com.liferay.portal.SystemException;
133
134 public com.liferay.portlet.expando.model.ExpandoValue findByRowId_First(
135 long rowId, com.liferay.portal.kernel.util.OrderByComparator obc)
136 throws com.liferay.portal.SystemException,
137 com.liferay.portlet.expando.NoSuchValueException;
138
139 public com.liferay.portlet.expando.model.ExpandoValue findByRowId_Last(
140 long rowId, com.liferay.portal.kernel.util.OrderByComparator obc)
141 throws com.liferay.portal.SystemException,
142 com.liferay.portlet.expando.NoSuchValueException;
143
144 public com.liferay.portlet.expando.model.ExpandoValue[] findByRowId_PrevAndNext(
145 long valueId, long rowId,
146 com.liferay.portal.kernel.util.OrderByComparator obc)
147 throws com.liferay.portal.SystemException,
148 com.liferay.portlet.expando.NoSuchValueException;
149
150 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C(
151 long tableId, long columnId) throws com.liferay.portal.SystemException;
152
153 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C(
154 long tableId, long columnId, int start, int end)
155 throws com.liferay.portal.SystemException;
156
157 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C(
158 long tableId, long columnId, int start, int end,
159 com.liferay.portal.kernel.util.OrderByComparator obc)
160 throws com.liferay.portal.SystemException;
161
162 public com.liferay.portlet.expando.model.ExpandoValue findByT_C_First(
163 long tableId, long columnId,
164 com.liferay.portal.kernel.util.OrderByComparator obc)
165 throws com.liferay.portal.SystemException,
166 com.liferay.portlet.expando.NoSuchValueException;
167
168 public com.liferay.portlet.expando.model.ExpandoValue findByT_C_Last(
169 long tableId, long columnId,
170 com.liferay.portal.kernel.util.OrderByComparator obc)
171 throws com.liferay.portal.SystemException,
172 com.liferay.portlet.expando.NoSuchValueException;
173
174 public com.liferay.portlet.expando.model.ExpandoValue[] findByT_C_PrevAndNext(
175 long valueId, long tableId, long columnId,
176 com.liferay.portal.kernel.util.OrderByComparator obc)
177 throws com.liferay.portal.SystemException,
178 com.liferay.portlet.expando.NoSuchValueException;
179
180 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_CPK(
181 long tableId, long classPK) throws com.liferay.portal.SystemException;
182
183 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_CPK(
184 long tableId, long classPK, int start, int end)
185 throws com.liferay.portal.SystemException;
186
187 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_CPK(
188 long tableId, long classPK, int start, int end,
189 com.liferay.portal.kernel.util.OrderByComparator obc)
190 throws com.liferay.portal.SystemException;
191
192 public com.liferay.portlet.expando.model.ExpandoValue findByT_CPK_First(
193 long tableId, long classPK,
194 com.liferay.portal.kernel.util.OrderByComparator obc)
195 throws com.liferay.portal.SystemException,
196 com.liferay.portlet.expando.NoSuchValueException;
197
198 public com.liferay.portlet.expando.model.ExpandoValue findByT_CPK_Last(
199 long tableId, long classPK,
200 com.liferay.portal.kernel.util.OrderByComparator obc)
201 throws com.liferay.portal.SystemException,
202 com.liferay.portlet.expando.NoSuchValueException;
203
204 public com.liferay.portlet.expando.model.ExpandoValue[] findByT_CPK_PrevAndNext(
205 long valueId, long tableId, long classPK,
206 com.liferay.portal.kernel.util.OrderByComparator obc)
207 throws com.liferay.portal.SystemException,
208 com.liferay.portlet.expando.NoSuchValueException;
209
210 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_R(
211 long tableId, long rowId) throws com.liferay.portal.SystemException;
212
213 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_R(
214 long tableId, long rowId, int start, int end)
215 throws com.liferay.portal.SystemException;
216
217 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_R(
218 long tableId, long rowId, int start, int end,
219 com.liferay.portal.kernel.util.OrderByComparator obc)
220 throws com.liferay.portal.SystemException;
221
222 public com.liferay.portlet.expando.model.ExpandoValue findByT_R_First(
223 long tableId, long rowId,
224 com.liferay.portal.kernel.util.OrderByComparator obc)
225 throws com.liferay.portal.SystemException,
226 com.liferay.portlet.expando.NoSuchValueException;
227
228 public com.liferay.portlet.expando.model.ExpandoValue findByT_R_Last(
229 long tableId, long rowId,
230 com.liferay.portal.kernel.util.OrderByComparator obc)
231 throws com.liferay.portal.SystemException,
232 com.liferay.portlet.expando.NoSuchValueException;
233
234 public com.liferay.portlet.expando.model.ExpandoValue[] findByT_R_PrevAndNext(
235 long valueId, long tableId, long rowId,
236 com.liferay.portal.kernel.util.OrderByComparator obc)
237 throws com.liferay.portal.SystemException,
238 com.liferay.portlet.expando.NoSuchValueException;
239
240 public com.liferay.portlet.expando.model.ExpandoValue findByC_R(
241 long columnId, long rowId)
242 throws com.liferay.portal.SystemException,
243 com.liferay.portlet.expando.NoSuchValueException;
244
245 public com.liferay.portlet.expando.model.ExpandoValue fetchByC_R(
246 long columnId, long rowId) throws com.liferay.portal.SystemException;
247
248 public com.liferay.portlet.expando.model.ExpandoValue fetchByC_R(
249 long columnId, long rowId, boolean retrieveFromCache)
250 throws com.liferay.portal.SystemException;
251
252 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByC_C(
253 long classNameId, long classPK)
254 throws com.liferay.portal.SystemException;
255
256 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByC_C(
257 long classNameId, long classPK, int start, int end)
258 throws com.liferay.portal.SystemException;
259
260 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByC_C(
261 long classNameId, long classPK, int start, int end,
262 com.liferay.portal.kernel.util.OrderByComparator obc)
263 throws com.liferay.portal.SystemException;
264
265 public com.liferay.portlet.expando.model.ExpandoValue findByC_C_First(
266 long classNameId, long classPK,
267 com.liferay.portal.kernel.util.OrderByComparator obc)
268 throws com.liferay.portal.SystemException,
269 com.liferay.portlet.expando.NoSuchValueException;
270
271 public com.liferay.portlet.expando.model.ExpandoValue findByC_C_Last(
272 long classNameId, long classPK,
273 com.liferay.portal.kernel.util.OrderByComparator obc)
274 throws com.liferay.portal.SystemException,
275 com.liferay.portlet.expando.NoSuchValueException;
276
277 public com.liferay.portlet.expando.model.ExpandoValue[] findByC_C_PrevAndNext(
278 long valueId, long classNameId, long classPK,
279 com.liferay.portal.kernel.util.OrderByComparator obc)
280 throws com.liferay.portal.SystemException,
281 com.liferay.portlet.expando.NoSuchValueException;
282
283 public com.liferay.portlet.expando.model.ExpandoValue findByT_C_C(
284 long tableId, long columnId, long classPK)
285 throws com.liferay.portal.SystemException,
286 com.liferay.portlet.expando.NoSuchValueException;
287
288 public com.liferay.portlet.expando.model.ExpandoValue fetchByT_C_C(
289 long tableId, long columnId, long classPK)
290 throws com.liferay.portal.SystemException;
291
292 public com.liferay.portlet.expando.model.ExpandoValue fetchByT_C_C(
293 long tableId, long columnId, long classPK, boolean retrieveFromCache)
294 throws com.liferay.portal.SystemException;
295
296 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C_D(
297 long tableId, long columnId, java.lang.String data)
298 throws com.liferay.portal.SystemException;
299
300 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C_D(
301 long tableId, long columnId, java.lang.String data, int start, int end)
302 throws com.liferay.portal.SystemException;
303
304 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C_D(
305 long tableId, long columnId, java.lang.String data, int start, int end,
306 com.liferay.portal.kernel.util.OrderByComparator obc)
307 throws com.liferay.portal.SystemException;
308
309 public com.liferay.portlet.expando.model.ExpandoValue findByT_C_D_First(
310 long tableId, long columnId, java.lang.String data,
311 com.liferay.portal.kernel.util.OrderByComparator obc)
312 throws com.liferay.portal.SystemException,
313 com.liferay.portlet.expando.NoSuchValueException;
314
315 public com.liferay.portlet.expando.model.ExpandoValue findByT_C_D_Last(
316 long tableId, long columnId, java.lang.String data,
317 com.liferay.portal.kernel.util.OrderByComparator obc)
318 throws com.liferay.portal.SystemException,
319 com.liferay.portlet.expando.NoSuchValueException;
320
321 public com.liferay.portlet.expando.model.ExpandoValue[] findByT_C_D_PrevAndNext(
322 long valueId, long tableId, long columnId, java.lang.String data,
323 com.liferay.portal.kernel.util.OrderByComparator obc)
324 throws com.liferay.portal.SystemException,
325 com.liferay.portlet.expando.NoSuchValueException;
326
327 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findAll()
328 throws com.liferay.portal.SystemException;
329
330 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findAll(
331 int start, int end) throws com.liferay.portal.SystemException;
332
333 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findAll(
334 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
335 throws com.liferay.portal.SystemException;
336
337 public void removeByTableId(long tableId)
338 throws com.liferay.portal.SystemException;
339
340 public void removeByColumnId(long columnId)
341 throws com.liferay.portal.SystemException;
342
343 public void removeByRowId(long rowId)
344 throws com.liferay.portal.SystemException;
345
346 public void removeByT_C(long tableId, long columnId)
347 throws com.liferay.portal.SystemException;
348
349 public void removeByT_CPK(long tableId, long classPK)
350 throws com.liferay.portal.SystemException;
351
352 public void removeByT_R(long tableId, long rowId)
353 throws com.liferay.portal.SystemException;
354
355 public void removeByC_R(long columnId, long rowId)
356 throws com.liferay.portal.SystemException,
357 com.liferay.portlet.expando.NoSuchValueException;
358
359 public void removeByC_C(long classNameId, long classPK)
360 throws com.liferay.portal.SystemException;
361
362 public void removeByT_C_C(long tableId, long columnId, long classPK)
363 throws com.liferay.portal.SystemException,
364 com.liferay.portlet.expando.NoSuchValueException;
365
366 public void removeByT_C_D(long tableId, long columnId, java.lang.String data)
367 throws com.liferay.portal.SystemException;
368
369 public void removeAll() throws com.liferay.portal.SystemException;
370
371 public int countByTableId(long tableId)
372 throws com.liferay.portal.SystemException;
373
374 public int countByColumnId(long columnId)
375 throws com.liferay.portal.SystemException;
376
377 public int countByRowId(long rowId)
378 throws com.liferay.portal.SystemException;
379
380 public int countByT_C(long tableId, long columnId)
381 throws com.liferay.portal.SystemException;
382
383 public int countByT_CPK(long tableId, long classPK)
384 throws com.liferay.portal.SystemException;
385
386 public int countByT_R(long tableId, long rowId)
387 throws com.liferay.portal.SystemException;
388
389 public int countByC_R(long columnId, long rowId)
390 throws com.liferay.portal.SystemException;
391
392 public int countByC_C(long classNameId, long classPK)
393 throws com.liferay.portal.SystemException;
394
395 public int countByT_C_C(long tableId, long columnId, long classPK)
396 throws com.liferay.portal.SystemException;
397
398 public int countByT_C_D(long tableId, long columnId, java.lang.String data)
399 throws com.liferay.portal.SystemException;
400
401 public int countAll() throws com.liferay.portal.SystemException;
402 }