1
22
23 package com.liferay.portlet.expando.service.persistence;
24
25
26
39 public class ExpandoValueUtil {
40 public static void cacheResult(
41 com.liferay.portlet.expando.model.ExpandoValue expandoValue) {
42 getPersistence().cacheResult(expandoValue);
43 }
44
45 public static void cacheResult(
46 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> expandoValues) {
47 getPersistence().cacheResult(expandoValues);
48 }
49
50 public static void clearCache() {
51 getPersistence().clearCache();
52 }
53
54 public static com.liferay.portlet.expando.model.ExpandoValue create(
55 long valueId) {
56 return getPersistence().create(valueId);
57 }
58
59 public static com.liferay.portlet.expando.model.ExpandoValue remove(
60 long valueId)
61 throws com.liferay.portal.SystemException,
62 com.liferay.portlet.expando.NoSuchValueException {
63 return getPersistence().remove(valueId);
64 }
65
66 public static com.liferay.portlet.expando.model.ExpandoValue remove(
67 com.liferay.portlet.expando.model.ExpandoValue expandoValue)
68 throws com.liferay.portal.SystemException {
69 return getPersistence().remove(expandoValue);
70 }
71
72
75 public static com.liferay.portlet.expando.model.ExpandoValue update(
76 com.liferay.portlet.expando.model.ExpandoValue expandoValue)
77 throws com.liferay.portal.SystemException {
78 return getPersistence().update(expandoValue);
79 }
80
81
93 public static com.liferay.portlet.expando.model.ExpandoValue update(
94 com.liferay.portlet.expando.model.ExpandoValue expandoValue,
95 boolean merge) throws com.liferay.portal.SystemException {
96 return getPersistence().update(expandoValue, merge);
97 }
98
99 public static com.liferay.portlet.expando.model.ExpandoValue updateImpl(
100 com.liferay.portlet.expando.model.ExpandoValue expandoValue,
101 boolean merge) throws com.liferay.portal.SystemException {
102 return getPersistence().updateImpl(expandoValue, merge);
103 }
104
105 public static com.liferay.portlet.expando.model.ExpandoValue findByPrimaryKey(
106 long valueId)
107 throws com.liferay.portal.SystemException,
108 com.liferay.portlet.expando.NoSuchValueException {
109 return getPersistence().findByPrimaryKey(valueId);
110 }
111
112 public static com.liferay.portlet.expando.model.ExpandoValue fetchByPrimaryKey(
113 long valueId) throws com.liferay.portal.SystemException {
114 return getPersistence().fetchByPrimaryKey(valueId);
115 }
116
117 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTableId(
118 long tableId) throws com.liferay.portal.SystemException {
119 return getPersistence().findByTableId(tableId);
120 }
121
122 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTableId(
123 long tableId, int start, int end)
124 throws com.liferay.portal.SystemException {
125 return getPersistence().findByTableId(tableId, start, end);
126 }
127
128 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTableId(
129 long tableId, int start, int end,
130 com.liferay.portal.kernel.util.OrderByComparator obc)
131 throws com.liferay.portal.SystemException {
132 return getPersistence().findByTableId(tableId, start, end, obc);
133 }
134
135 public static com.liferay.portlet.expando.model.ExpandoValue findByTableId_First(
136 long tableId, com.liferay.portal.kernel.util.OrderByComparator obc)
137 throws com.liferay.portal.SystemException,
138 com.liferay.portlet.expando.NoSuchValueException {
139 return getPersistence().findByTableId_First(tableId, obc);
140 }
141
142 public static com.liferay.portlet.expando.model.ExpandoValue findByTableId_Last(
143 long tableId, com.liferay.portal.kernel.util.OrderByComparator obc)
144 throws com.liferay.portal.SystemException,
145 com.liferay.portlet.expando.NoSuchValueException {
146 return getPersistence().findByTableId_Last(tableId, obc);
147 }
148
149 public static com.liferay.portlet.expando.model.ExpandoValue[] findByTableId_PrevAndNext(
150 long valueId, long tableId,
151 com.liferay.portal.kernel.util.OrderByComparator obc)
152 throws com.liferay.portal.SystemException,
153 com.liferay.portlet.expando.NoSuchValueException {
154 return getPersistence().findByTableId_PrevAndNext(valueId, tableId, obc);
155 }
156
157 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByColumnId(
158 long columnId) throws com.liferay.portal.SystemException {
159 return getPersistence().findByColumnId(columnId);
160 }
161
162 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByColumnId(
163 long columnId, int start, int end)
164 throws com.liferay.portal.SystemException {
165 return getPersistence().findByColumnId(columnId, start, end);
166 }
167
168 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByColumnId(
169 long columnId, int start, int end,
170 com.liferay.portal.kernel.util.OrderByComparator obc)
171 throws com.liferay.portal.SystemException {
172 return getPersistence().findByColumnId(columnId, start, end, obc);
173 }
174
175 public static com.liferay.portlet.expando.model.ExpandoValue findByColumnId_First(
176 long columnId, com.liferay.portal.kernel.util.OrderByComparator obc)
177 throws com.liferay.portal.SystemException,
178 com.liferay.portlet.expando.NoSuchValueException {
179 return getPersistence().findByColumnId_First(columnId, obc);
180 }
181
182 public static com.liferay.portlet.expando.model.ExpandoValue findByColumnId_Last(
183 long columnId, com.liferay.portal.kernel.util.OrderByComparator obc)
184 throws com.liferay.portal.SystemException,
185 com.liferay.portlet.expando.NoSuchValueException {
186 return getPersistence().findByColumnId_Last(columnId, obc);
187 }
188
189 public static com.liferay.portlet.expando.model.ExpandoValue[] findByColumnId_PrevAndNext(
190 long valueId, long columnId,
191 com.liferay.portal.kernel.util.OrderByComparator obc)
192 throws com.liferay.portal.SystemException,
193 com.liferay.portlet.expando.NoSuchValueException {
194 return getPersistence()
195 .findByColumnId_PrevAndNext(valueId, columnId, obc);
196 }
197
198 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByRowId(
199 long rowId) throws com.liferay.portal.SystemException {
200 return getPersistence().findByRowId(rowId);
201 }
202
203 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByRowId(
204 long rowId, int start, int end)
205 throws com.liferay.portal.SystemException {
206 return getPersistence().findByRowId(rowId, start, end);
207 }
208
209 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByRowId(
210 long rowId, int start, int end,
211 com.liferay.portal.kernel.util.OrderByComparator obc)
212 throws com.liferay.portal.SystemException {
213 return getPersistence().findByRowId(rowId, start, end, obc);
214 }
215
216 public static com.liferay.portlet.expando.model.ExpandoValue findByRowId_First(
217 long rowId, com.liferay.portal.kernel.util.OrderByComparator obc)
218 throws com.liferay.portal.SystemException,
219 com.liferay.portlet.expando.NoSuchValueException {
220 return getPersistence().findByRowId_First(rowId, obc);
221 }
222
223 public static com.liferay.portlet.expando.model.ExpandoValue findByRowId_Last(
224 long rowId, com.liferay.portal.kernel.util.OrderByComparator obc)
225 throws com.liferay.portal.SystemException,
226 com.liferay.portlet.expando.NoSuchValueException {
227 return getPersistence().findByRowId_Last(rowId, obc);
228 }
229
230 public static com.liferay.portlet.expando.model.ExpandoValue[] findByRowId_PrevAndNext(
231 long valueId, long rowId,
232 com.liferay.portal.kernel.util.OrderByComparator obc)
233 throws com.liferay.portal.SystemException,
234 com.liferay.portlet.expando.NoSuchValueException {
235 return getPersistence().findByRowId_PrevAndNext(valueId, rowId, obc);
236 }
237
238 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C(
239 long tableId, long columnId) throws com.liferay.portal.SystemException {
240 return getPersistence().findByT_C(tableId, columnId);
241 }
242
243 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C(
244 long tableId, long columnId, int start, int end)
245 throws com.liferay.portal.SystemException {
246 return getPersistence().findByT_C(tableId, columnId, start, end);
247 }
248
249 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C(
250 long tableId, long columnId, int start, int end,
251 com.liferay.portal.kernel.util.OrderByComparator obc)
252 throws com.liferay.portal.SystemException {
253 return getPersistence().findByT_C(tableId, columnId, start, end, obc);
254 }
255
256 public static com.liferay.portlet.expando.model.ExpandoValue findByT_C_First(
257 long tableId, long columnId,
258 com.liferay.portal.kernel.util.OrderByComparator obc)
259 throws com.liferay.portal.SystemException,
260 com.liferay.portlet.expando.NoSuchValueException {
261 return getPersistence().findByT_C_First(tableId, columnId, obc);
262 }
263
264 public static com.liferay.portlet.expando.model.ExpandoValue findByT_C_Last(
265 long tableId, long columnId,
266 com.liferay.portal.kernel.util.OrderByComparator obc)
267 throws com.liferay.portal.SystemException,
268 com.liferay.portlet.expando.NoSuchValueException {
269 return getPersistence().findByT_C_Last(tableId, columnId, obc);
270 }
271
272 public static com.liferay.portlet.expando.model.ExpandoValue[] findByT_C_PrevAndNext(
273 long valueId, long tableId, long columnId,
274 com.liferay.portal.kernel.util.OrderByComparator obc)
275 throws com.liferay.portal.SystemException,
276 com.liferay.portlet.expando.NoSuchValueException {
277 return getPersistence()
278 .findByT_C_PrevAndNext(valueId, tableId, columnId, obc);
279 }
280
281 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_CPK(
282 long tableId, long classPK) throws com.liferay.portal.SystemException {
283 return getPersistence().findByT_CPK(tableId, classPK);
284 }
285
286 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_CPK(
287 long tableId, long classPK, int start, int end)
288 throws com.liferay.portal.SystemException {
289 return getPersistence().findByT_CPK(tableId, classPK, start, end);
290 }
291
292 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_CPK(
293 long tableId, long classPK, int start, int end,
294 com.liferay.portal.kernel.util.OrderByComparator obc)
295 throws com.liferay.portal.SystemException {
296 return getPersistence().findByT_CPK(tableId, classPK, start, end, obc);
297 }
298
299 public static com.liferay.portlet.expando.model.ExpandoValue findByT_CPK_First(
300 long tableId, long classPK,
301 com.liferay.portal.kernel.util.OrderByComparator obc)
302 throws com.liferay.portal.SystemException,
303 com.liferay.portlet.expando.NoSuchValueException {
304 return getPersistence().findByT_CPK_First(tableId, classPK, obc);
305 }
306
307 public static com.liferay.portlet.expando.model.ExpandoValue findByT_CPK_Last(
308 long tableId, long classPK,
309 com.liferay.portal.kernel.util.OrderByComparator obc)
310 throws com.liferay.portal.SystemException,
311 com.liferay.portlet.expando.NoSuchValueException {
312 return getPersistence().findByT_CPK_Last(tableId, classPK, obc);
313 }
314
315 public static com.liferay.portlet.expando.model.ExpandoValue[] findByT_CPK_PrevAndNext(
316 long valueId, long tableId, long classPK,
317 com.liferay.portal.kernel.util.OrderByComparator obc)
318 throws com.liferay.portal.SystemException,
319 com.liferay.portlet.expando.NoSuchValueException {
320 return getPersistence()
321 .findByT_CPK_PrevAndNext(valueId, tableId, classPK, obc);
322 }
323
324 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_R(
325 long tableId, long rowId) throws com.liferay.portal.SystemException {
326 return getPersistence().findByT_R(tableId, rowId);
327 }
328
329 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_R(
330 long tableId, long rowId, int start, int end)
331 throws com.liferay.portal.SystemException {
332 return getPersistence().findByT_R(tableId, rowId, start, end);
333 }
334
335 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_R(
336 long tableId, long rowId, int start, int end,
337 com.liferay.portal.kernel.util.OrderByComparator obc)
338 throws com.liferay.portal.SystemException {
339 return getPersistence().findByT_R(tableId, rowId, start, end, obc);
340 }
341
342 public static com.liferay.portlet.expando.model.ExpandoValue findByT_R_First(
343 long tableId, long rowId,
344 com.liferay.portal.kernel.util.OrderByComparator obc)
345 throws com.liferay.portal.SystemException,
346 com.liferay.portlet.expando.NoSuchValueException {
347 return getPersistence().findByT_R_First(tableId, rowId, obc);
348 }
349
350 public static com.liferay.portlet.expando.model.ExpandoValue findByT_R_Last(
351 long tableId, long rowId,
352 com.liferay.portal.kernel.util.OrderByComparator obc)
353 throws com.liferay.portal.SystemException,
354 com.liferay.portlet.expando.NoSuchValueException {
355 return getPersistence().findByT_R_Last(tableId, rowId, obc);
356 }
357
358 public static com.liferay.portlet.expando.model.ExpandoValue[] findByT_R_PrevAndNext(
359 long valueId, long tableId, long rowId,
360 com.liferay.portal.kernel.util.OrderByComparator obc)
361 throws com.liferay.portal.SystemException,
362 com.liferay.portlet.expando.NoSuchValueException {
363 return getPersistence()
364 .findByT_R_PrevAndNext(valueId, tableId, rowId, obc);
365 }
366
367 public static com.liferay.portlet.expando.model.ExpandoValue findByC_R(
368 long columnId, long rowId)
369 throws com.liferay.portal.SystemException,
370 com.liferay.portlet.expando.NoSuchValueException {
371 return getPersistence().findByC_R(columnId, rowId);
372 }
373
374 public static com.liferay.portlet.expando.model.ExpandoValue fetchByC_R(
375 long columnId, long rowId) throws com.liferay.portal.SystemException {
376 return getPersistence().fetchByC_R(columnId, rowId);
377 }
378
379 public static com.liferay.portlet.expando.model.ExpandoValue fetchByC_R(
380 long columnId, long rowId, boolean retrieveFromCache)
381 throws com.liferay.portal.SystemException {
382 return getPersistence().fetchByC_R(columnId, rowId, retrieveFromCache);
383 }
384
385 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByC_C(
386 long classNameId, long classPK)
387 throws com.liferay.portal.SystemException {
388 return getPersistence().findByC_C(classNameId, classPK);
389 }
390
391 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByC_C(
392 long classNameId, long classPK, int start, int end)
393 throws com.liferay.portal.SystemException {
394 return getPersistence().findByC_C(classNameId, classPK, start, end);
395 }
396
397 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByC_C(
398 long classNameId, long classPK, int start, int end,
399 com.liferay.portal.kernel.util.OrderByComparator obc)
400 throws com.liferay.portal.SystemException {
401 return getPersistence().findByC_C(classNameId, classPK, start, end, obc);
402 }
403
404 public static com.liferay.portlet.expando.model.ExpandoValue findByC_C_First(
405 long classNameId, long classPK,
406 com.liferay.portal.kernel.util.OrderByComparator obc)
407 throws com.liferay.portal.SystemException,
408 com.liferay.portlet.expando.NoSuchValueException {
409 return getPersistence().findByC_C_First(classNameId, classPK, obc);
410 }
411
412 public static com.liferay.portlet.expando.model.ExpandoValue findByC_C_Last(
413 long classNameId, long classPK,
414 com.liferay.portal.kernel.util.OrderByComparator obc)
415 throws com.liferay.portal.SystemException,
416 com.liferay.portlet.expando.NoSuchValueException {
417 return getPersistence().findByC_C_Last(classNameId, classPK, obc);
418 }
419
420 public static com.liferay.portlet.expando.model.ExpandoValue[] findByC_C_PrevAndNext(
421 long valueId, long classNameId, long classPK,
422 com.liferay.portal.kernel.util.OrderByComparator obc)
423 throws com.liferay.portal.SystemException,
424 com.liferay.portlet.expando.NoSuchValueException {
425 return getPersistence()
426 .findByC_C_PrevAndNext(valueId, classNameId, classPK, obc);
427 }
428
429 public static com.liferay.portlet.expando.model.ExpandoValue findByT_C_C(
430 long tableId, long columnId, long classPK)
431 throws com.liferay.portal.SystemException,
432 com.liferay.portlet.expando.NoSuchValueException {
433 return getPersistence().findByT_C_C(tableId, columnId, classPK);
434 }
435
436 public static com.liferay.portlet.expando.model.ExpandoValue fetchByT_C_C(
437 long tableId, long columnId, long classPK)
438 throws com.liferay.portal.SystemException {
439 return getPersistence().fetchByT_C_C(tableId, columnId, classPK);
440 }
441
442 public static com.liferay.portlet.expando.model.ExpandoValue fetchByT_C_C(
443 long tableId, long columnId, long classPK, boolean retrieveFromCache)
444 throws com.liferay.portal.SystemException {
445 return getPersistence()
446 .fetchByT_C_C(tableId, columnId, classPK, retrieveFromCache);
447 }
448
449 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C_D(
450 long tableId, long columnId, java.lang.String data)
451 throws com.liferay.portal.SystemException {
452 return getPersistence().findByT_C_D(tableId, columnId, data);
453 }
454
455 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C_D(
456 long tableId, long columnId, java.lang.String data, int start, int end)
457 throws com.liferay.portal.SystemException {
458 return getPersistence().findByT_C_D(tableId, columnId, data, start, end);
459 }
460
461 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByT_C_D(
462 long tableId, long columnId, java.lang.String data, int start, int end,
463 com.liferay.portal.kernel.util.OrderByComparator obc)
464 throws com.liferay.portal.SystemException {
465 return getPersistence()
466 .findByT_C_D(tableId, columnId, data, start, end, obc);
467 }
468
469 public static com.liferay.portlet.expando.model.ExpandoValue findByT_C_D_First(
470 long tableId, long columnId, java.lang.String data,
471 com.liferay.portal.kernel.util.OrderByComparator obc)
472 throws com.liferay.portal.SystemException,
473 com.liferay.portlet.expando.NoSuchValueException {
474 return getPersistence().findByT_C_D_First(tableId, columnId, data, obc);
475 }
476
477 public static com.liferay.portlet.expando.model.ExpandoValue findByT_C_D_Last(
478 long tableId, long columnId, java.lang.String data,
479 com.liferay.portal.kernel.util.OrderByComparator obc)
480 throws com.liferay.portal.SystemException,
481 com.liferay.portlet.expando.NoSuchValueException {
482 return getPersistence().findByT_C_D_Last(tableId, columnId, data, obc);
483 }
484
485 public static com.liferay.portlet.expando.model.ExpandoValue[] findByT_C_D_PrevAndNext(
486 long valueId, long tableId, long columnId, java.lang.String data,
487 com.liferay.portal.kernel.util.OrderByComparator obc)
488 throws com.liferay.portal.SystemException,
489 com.liferay.portlet.expando.NoSuchValueException {
490 return getPersistence()
491 .findByT_C_D_PrevAndNext(valueId, tableId, columnId, data,
492 obc);
493 }
494
495 public static java.util.List<Object> findWithDynamicQuery(
496 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
497 throws com.liferay.portal.SystemException {
498 return getPersistence().findWithDynamicQuery(dynamicQuery);
499 }
500
501 public static java.util.List<Object> findWithDynamicQuery(
502 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
503 int end) throws com.liferay.portal.SystemException {
504 return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
505 }
506
507 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findAll()
508 throws com.liferay.portal.SystemException {
509 return getPersistence().findAll();
510 }
511
512 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findAll(
513 int start, int end) throws com.liferay.portal.SystemException {
514 return getPersistence().findAll(start, end);
515 }
516
517 public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findAll(
518 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
519 throws com.liferay.portal.SystemException {
520 return getPersistence().findAll(start, end, obc);
521 }
522
523 public static void removeByTableId(long tableId)
524 throws com.liferay.portal.SystemException {
525 getPersistence().removeByTableId(tableId);
526 }
527
528 public static void removeByColumnId(long columnId)
529 throws com.liferay.portal.SystemException {
530 getPersistence().removeByColumnId(columnId);
531 }
532
533 public static void removeByRowId(long rowId)
534 throws com.liferay.portal.SystemException {
535 getPersistence().removeByRowId(rowId);
536 }
537
538 public static void removeByT_C(long tableId, long columnId)
539 throws com.liferay.portal.SystemException {
540 getPersistence().removeByT_C(tableId, columnId);
541 }
542
543 public static void removeByT_CPK(long tableId, long classPK)
544 throws com.liferay.portal.SystemException {
545 getPersistence().removeByT_CPK(tableId, classPK);
546 }
547
548 public static void removeByT_R(long tableId, long rowId)
549 throws com.liferay.portal.SystemException {
550 getPersistence().removeByT_R(tableId, rowId);
551 }
552
553 public static void removeByC_R(long columnId, long rowId)
554 throws com.liferay.portal.SystemException,
555 com.liferay.portlet.expando.NoSuchValueException {
556 getPersistence().removeByC_R(columnId, rowId);
557 }
558
559 public static void removeByC_C(long classNameId, long classPK)
560 throws com.liferay.portal.SystemException {
561 getPersistence().removeByC_C(classNameId, classPK);
562 }
563
564 public static void removeByT_C_C(long tableId, long columnId, long classPK)
565 throws com.liferay.portal.SystemException,
566 com.liferay.portlet.expando.NoSuchValueException {
567 getPersistence().removeByT_C_C(tableId, columnId, classPK);
568 }
569
570 public static void removeByT_C_D(long tableId, long columnId,
571 java.lang.String data) throws com.liferay.portal.SystemException {
572 getPersistence().removeByT_C_D(tableId, columnId, data);
573 }
574
575 public static void removeAll() throws com.liferay.portal.SystemException {
576 getPersistence().removeAll();
577 }
578
579 public static int countByTableId(long tableId)
580 throws com.liferay.portal.SystemException {
581 return getPersistence().countByTableId(tableId);
582 }
583
584 public static int countByColumnId(long columnId)
585 throws com.liferay.portal.SystemException {
586 return getPersistence().countByColumnId(columnId);
587 }
588
589 public static int countByRowId(long rowId)
590 throws com.liferay.portal.SystemException {
591 return getPersistence().countByRowId(rowId);
592 }
593
594 public static int countByT_C(long tableId, long columnId)
595 throws com.liferay.portal.SystemException {
596 return getPersistence().countByT_C(tableId, columnId);
597 }
598
599 public static int countByT_CPK(long tableId, long classPK)
600 throws com.liferay.portal.SystemException {
601 return getPersistence().countByT_CPK(tableId, classPK);
602 }
603
604 public static int countByT_R(long tableId, long rowId)
605 throws com.liferay.portal.SystemException {
606 return getPersistence().countByT_R(tableId, rowId);
607 }
608
609 public static int countByC_R(long columnId, long rowId)
610 throws com.liferay.portal.SystemException {
611 return getPersistence().countByC_R(columnId, rowId);
612 }
613
614 public static int countByC_C(long classNameId, long classPK)
615 throws com.liferay.portal.SystemException {
616 return getPersistence().countByC_C(classNameId, classPK);
617 }
618
619 public static int countByT_C_C(long tableId, long columnId, long classPK)
620 throws com.liferay.portal.SystemException {
621 return getPersistence().countByT_C_C(tableId, columnId, classPK);
622 }
623
624 public static int countByT_C_D(long tableId, long columnId,
625 java.lang.String data) throws com.liferay.portal.SystemException {
626 return getPersistence().countByT_C_D(tableId, columnId, data);
627 }
628
629 public static int countAll() throws com.liferay.portal.SystemException {
630 return getPersistence().countAll();
631 }
632
633 public static ExpandoValuePersistence getPersistence() {
634 return _persistence;
635 }
636
637 public void setPersistence(ExpandoValuePersistence persistence) {
638 _persistence = persistence;
639 }
640
641 private static ExpandoValuePersistence _persistence;
642 }