001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.wiki.service.persistence;
016    
017    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    import com.liferay.portal.kernel.dao.orm.DynamicQuery;
019    import com.liferay.portal.kernel.exception.SystemException;
020    import com.liferay.portal.kernel.util.OrderByComparator;
021    import com.liferay.portal.service.ServiceContext;
022    
023    import com.liferay.portlet.wiki.model.WikiPage;
024    
025    import java.util.List;
026    
027    /**
028     * @author    Brian Wing Shun Chan
029     * @see       WikiPagePersistence
030     * @see       WikiPagePersistenceImpl
031     * @generated
032     */
033    public class WikiPageUtil {
034            /**
035             * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
036             */
037            public static void clearCache() {
038                    getPersistence().clearCache();
039            }
040    
041            /**
042             * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(com.liferay.portal.model.BaseModel)
043             */
044            public static void clearCache(WikiPage wikiPage) {
045                    getPersistence().clearCache(wikiPage);
046            }
047    
048            /**
049             * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
050             */
051            public long countWithDynamicQuery(DynamicQuery dynamicQuery)
052                    throws SystemException {
053                    return getPersistence().countWithDynamicQuery(dynamicQuery);
054            }
055    
056            /**
057             * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
058             */
059            public static List<WikiPage> findWithDynamicQuery(DynamicQuery dynamicQuery)
060                    throws SystemException {
061                    return getPersistence().findWithDynamicQuery(dynamicQuery);
062            }
063    
064            /**
065             * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
066             */
067            public static List<WikiPage> findWithDynamicQuery(
068                    DynamicQuery dynamicQuery, int start, int end)
069                    throws SystemException {
070                    return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
071            }
072    
073            /**
074             * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
075             */
076            public static List<WikiPage> findWithDynamicQuery(
077                    DynamicQuery dynamicQuery, int start, int end,
078                    OrderByComparator orderByComparator) throws SystemException {
079                    return getPersistence()
080                                       .findWithDynamicQuery(dynamicQuery, start, end,
081                            orderByComparator);
082            }
083    
084            /**
085             * @see com.liferay.portal.service.persistence.BasePersistence#remove(com.liferay.portal.model.BaseModel)
086             */
087            public static WikiPage remove(WikiPage wikiPage) throws SystemException {
088                    return getPersistence().remove(wikiPage);
089            }
090    
091            /**
092             * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean)
093             */
094            public static WikiPage update(WikiPage wikiPage, boolean merge)
095                    throws SystemException {
096                    return getPersistence().update(wikiPage, merge);
097            }
098    
099            /**
100             * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)
101             */
102            public static WikiPage update(WikiPage wikiPage, boolean merge,
103                    ServiceContext serviceContext) throws SystemException {
104                    return getPersistence().update(wikiPage, merge, serviceContext);
105            }
106    
107            public static void cacheResult(
108                    com.liferay.portlet.wiki.model.WikiPage wikiPage) {
109                    getPersistence().cacheResult(wikiPage);
110            }
111    
112            public static void cacheResult(
113                    java.util.List<com.liferay.portlet.wiki.model.WikiPage> wikiPages) {
114                    getPersistence().cacheResult(wikiPages);
115            }
116    
117            public static com.liferay.portlet.wiki.model.WikiPage create(long pageId) {
118                    return getPersistence().create(pageId);
119            }
120    
121            public static com.liferay.portlet.wiki.model.WikiPage remove(long pageId)
122                    throws com.liferay.portal.kernel.exception.SystemException,
123                            com.liferay.portlet.wiki.NoSuchPageException {
124                    return getPersistence().remove(pageId);
125            }
126    
127            public static com.liferay.portlet.wiki.model.WikiPage updateImpl(
128                    com.liferay.portlet.wiki.model.WikiPage wikiPage, boolean merge)
129                    throws com.liferay.portal.kernel.exception.SystemException {
130                    return getPersistence().updateImpl(wikiPage, merge);
131            }
132    
133            public static com.liferay.portlet.wiki.model.WikiPage findByPrimaryKey(
134                    long pageId)
135                    throws com.liferay.portal.kernel.exception.SystemException,
136                            com.liferay.portlet.wiki.NoSuchPageException {
137                    return getPersistence().findByPrimaryKey(pageId);
138            }
139    
140            public static com.liferay.portlet.wiki.model.WikiPage fetchByPrimaryKey(
141                    long pageId) throws com.liferay.portal.kernel.exception.SystemException {
142                    return getPersistence().fetchByPrimaryKey(pageId);
143            }
144    
145            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
146                    java.lang.String uuid)
147                    throws com.liferay.portal.kernel.exception.SystemException {
148                    return getPersistence().findByUuid(uuid);
149            }
150    
151            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
152                    java.lang.String uuid, int start, int end)
153                    throws com.liferay.portal.kernel.exception.SystemException {
154                    return getPersistence().findByUuid(uuid, start, end);
155            }
156    
157            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
158                    java.lang.String uuid, int start, int end,
159                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
160                    throws com.liferay.portal.kernel.exception.SystemException {
161                    return getPersistence().findByUuid(uuid, start, end, orderByComparator);
162            }
163    
164            public static com.liferay.portlet.wiki.model.WikiPage findByUuid_First(
165                    java.lang.String uuid,
166                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
167                    throws com.liferay.portal.kernel.exception.SystemException,
168                            com.liferay.portlet.wiki.NoSuchPageException {
169                    return getPersistence().findByUuid_First(uuid, orderByComparator);
170            }
171    
172            public static com.liferay.portlet.wiki.model.WikiPage findByUuid_Last(
173                    java.lang.String uuid,
174                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
175                    throws com.liferay.portal.kernel.exception.SystemException,
176                            com.liferay.portlet.wiki.NoSuchPageException {
177                    return getPersistence().findByUuid_Last(uuid, orderByComparator);
178            }
179    
180            public static com.liferay.portlet.wiki.model.WikiPage[] findByUuid_PrevAndNext(
181                    long pageId, java.lang.String uuid,
182                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
183                    throws com.liferay.portal.kernel.exception.SystemException,
184                            com.liferay.portlet.wiki.NoSuchPageException {
185                    return getPersistence()
186                                       .findByUuid_PrevAndNext(pageId, uuid, orderByComparator);
187            }
188    
189            public static com.liferay.portlet.wiki.model.WikiPage findByUUID_G(
190                    java.lang.String uuid, long groupId)
191                    throws com.liferay.portal.kernel.exception.SystemException,
192                            com.liferay.portlet.wiki.NoSuchPageException {
193                    return getPersistence().findByUUID_G(uuid, groupId);
194            }
195    
196            public static com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
197                    java.lang.String uuid, long groupId)
198                    throws com.liferay.portal.kernel.exception.SystemException {
199                    return getPersistence().fetchByUUID_G(uuid, groupId);
200            }
201    
202            public static com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
203                    java.lang.String uuid, long groupId, boolean retrieveFromCache)
204                    throws com.liferay.portal.kernel.exception.SystemException {
205                    return getPersistence().fetchByUUID_G(uuid, groupId, retrieveFromCache);
206            }
207    
208            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
209                    long nodeId) throws com.liferay.portal.kernel.exception.SystemException {
210                    return getPersistence().findByNodeId(nodeId);
211            }
212    
213            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
214                    long nodeId, int start, int end)
215                    throws com.liferay.portal.kernel.exception.SystemException {
216                    return getPersistence().findByNodeId(nodeId, start, end);
217            }
218    
219            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
220                    long nodeId, int start, int end,
221                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
222                    throws com.liferay.portal.kernel.exception.SystemException {
223                    return getPersistence()
224                                       .findByNodeId(nodeId, start, end, orderByComparator);
225            }
226    
227            public static com.liferay.portlet.wiki.model.WikiPage findByNodeId_First(
228                    long nodeId,
229                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
230                    throws com.liferay.portal.kernel.exception.SystemException,
231                            com.liferay.portlet.wiki.NoSuchPageException {
232                    return getPersistence().findByNodeId_First(nodeId, orderByComparator);
233            }
234    
235            public static com.liferay.portlet.wiki.model.WikiPage findByNodeId_Last(
236                    long nodeId,
237                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
238                    throws com.liferay.portal.kernel.exception.SystemException,
239                            com.liferay.portlet.wiki.NoSuchPageException {
240                    return getPersistence().findByNodeId_Last(nodeId, orderByComparator);
241            }
242    
243            public static com.liferay.portlet.wiki.model.WikiPage[] findByNodeId_PrevAndNext(
244                    long pageId, long nodeId,
245                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
246                    throws com.liferay.portal.kernel.exception.SystemException,
247                            com.liferay.portlet.wiki.NoSuchPageException {
248                    return getPersistence()
249                                       .findByNodeId_PrevAndNext(pageId, nodeId, orderByComparator);
250            }
251    
252            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
253                    java.lang.String format)
254                    throws com.liferay.portal.kernel.exception.SystemException {
255                    return getPersistence().findByFormat(format);
256            }
257    
258            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
259                    java.lang.String format, int start, int end)
260                    throws com.liferay.portal.kernel.exception.SystemException {
261                    return getPersistence().findByFormat(format, start, end);
262            }
263    
264            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
265                    java.lang.String format, int start, int end,
266                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
267                    throws com.liferay.portal.kernel.exception.SystemException {
268                    return getPersistence()
269                                       .findByFormat(format, start, end, orderByComparator);
270            }
271    
272            public static com.liferay.portlet.wiki.model.WikiPage findByFormat_First(
273                    java.lang.String format,
274                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
275                    throws com.liferay.portal.kernel.exception.SystemException,
276                            com.liferay.portlet.wiki.NoSuchPageException {
277                    return getPersistence().findByFormat_First(format, orderByComparator);
278            }
279    
280            public static com.liferay.portlet.wiki.model.WikiPage findByFormat_Last(
281                    java.lang.String format,
282                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
283                    throws com.liferay.portal.kernel.exception.SystemException,
284                            com.liferay.portlet.wiki.NoSuchPageException {
285                    return getPersistence().findByFormat_Last(format, orderByComparator);
286            }
287    
288            public static com.liferay.portlet.wiki.model.WikiPage[] findByFormat_PrevAndNext(
289                    long pageId, java.lang.String format,
290                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
291                    throws com.liferay.portal.kernel.exception.SystemException,
292                            com.liferay.portlet.wiki.NoSuchPageException {
293                    return getPersistence()
294                                       .findByFormat_PrevAndNext(pageId, format, orderByComparator);
295            }
296    
297            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
298                    long resourcePrimKey, long nodeId)
299                    throws com.liferay.portal.kernel.exception.SystemException {
300                    return getPersistence().findByR_N(resourcePrimKey, nodeId);
301            }
302    
303            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
304                    long resourcePrimKey, long nodeId, int start, int end)
305                    throws com.liferay.portal.kernel.exception.SystemException {
306                    return getPersistence().findByR_N(resourcePrimKey, nodeId, start, end);
307            }
308    
309            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
310                    long resourcePrimKey, long nodeId, int start, int end,
311                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
312                    throws com.liferay.portal.kernel.exception.SystemException {
313                    return getPersistence()
314                                       .findByR_N(resourcePrimKey, nodeId, start, end,
315                            orderByComparator);
316            }
317    
318            public static com.liferay.portlet.wiki.model.WikiPage findByR_N_First(
319                    long resourcePrimKey, long nodeId,
320                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
321                    throws com.liferay.portal.kernel.exception.SystemException,
322                            com.liferay.portlet.wiki.NoSuchPageException {
323                    return getPersistence()
324                                       .findByR_N_First(resourcePrimKey, nodeId, orderByComparator);
325            }
326    
327            public static com.liferay.portlet.wiki.model.WikiPage findByR_N_Last(
328                    long resourcePrimKey, long nodeId,
329                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
330                    throws com.liferay.portal.kernel.exception.SystemException,
331                            com.liferay.portlet.wiki.NoSuchPageException {
332                    return getPersistence()
333                                       .findByR_N_Last(resourcePrimKey, nodeId, orderByComparator);
334            }
335    
336            public static com.liferay.portlet.wiki.model.WikiPage[] findByR_N_PrevAndNext(
337                    long pageId, long resourcePrimKey, long nodeId,
338                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
339                    throws com.liferay.portal.kernel.exception.SystemException,
340                            com.liferay.portlet.wiki.NoSuchPageException {
341                    return getPersistence()
342                                       .findByR_N_PrevAndNext(pageId, resourcePrimKey, nodeId,
343                            orderByComparator);
344            }
345    
346            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
347                    long nodeId, java.lang.String title)
348                    throws com.liferay.portal.kernel.exception.SystemException {
349                    return getPersistence().findByN_T(nodeId, title);
350            }
351    
352            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
353                    long nodeId, java.lang.String title, int start, int end)
354                    throws com.liferay.portal.kernel.exception.SystemException {
355                    return getPersistence().findByN_T(nodeId, title, start, end);
356            }
357    
358            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
359                    long nodeId, java.lang.String title, int start, int end,
360                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
361                    throws com.liferay.portal.kernel.exception.SystemException {
362                    return getPersistence()
363                                       .findByN_T(nodeId, title, start, end, orderByComparator);
364            }
365    
366            public static com.liferay.portlet.wiki.model.WikiPage findByN_T_First(
367                    long nodeId, java.lang.String title,
368                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
369                    throws com.liferay.portal.kernel.exception.SystemException,
370                            com.liferay.portlet.wiki.NoSuchPageException {
371                    return getPersistence().findByN_T_First(nodeId, title, orderByComparator);
372            }
373    
374            public static com.liferay.portlet.wiki.model.WikiPage findByN_T_Last(
375                    long nodeId, java.lang.String title,
376                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
377                    throws com.liferay.portal.kernel.exception.SystemException,
378                            com.liferay.portlet.wiki.NoSuchPageException {
379                    return getPersistence().findByN_T_Last(nodeId, title, orderByComparator);
380            }
381    
382            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_T_PrevAndNext(
383                    long pageId, long nodeId, java.lang.String title,
384                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
385                    throws com.liferay.portal.kernel.exception.SystemException,
386                            com.liferay.portlet.wiki.NoSuchPageException {
387                    return getPersistence()
388                                       .findByN_T_PrevAndNext(pageId, nodeId, title,
389                            orderByComparator);
390            }
391    
392            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
393                    long nodeId, boolean head)
394                    throws com.liferay.portal.kernel.exception.SystemException {
395                    return getPersistence().findByN_H(nodeId, head);
396            }
397    
398            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
399                    long nodeId, boolean head, int start, int end)
400                    throws com.liferay.portal.kernel.exception.SystemException {
401                    return getPersistence().findByN_H(nodeId, head, start, end);
402            }
403    
404            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
405                    long nodeId, boolean head, int start, int end,
406                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
407                    throws com.liferay.portal.kernel.exception.SystemException {
408                    return getPersistence()
409                                       .findByN_H(nodeId, head, start, end, orderByComparator);
410            }
411    
412            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_First(
413                    long nodeId, boolean head,
414                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
415                    throws com.liferay.portal.kernel.exception.SystemException,
416                            com.liferay.portlet.wiki.NoSuchPageException {
417                    return getPersistence().findByN_H_First(nodeId, head, orderByComparator);
418            }
419    
420            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_Last(
421                    long nodeId, boolean head,
422                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
423                    throws com.liferay.portal.kernel.exception.SystemException,
424                            com.liferay.portlet.wiki.NoSuchPageException {
425                    return getPersistence().findByN_H_Last(nodeId, head, orderByComparator);
426            }
427    
428            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_PrevAndNext(
429                    long pageId, long nodeId, boolean head,
430                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
431                    throws com.liferay.portal.kernel.exception.SystemException,
432                            com.liferay.portlet.wiki.NoSuchPageException {
433                    return getPersistence()
434                                       .findByN_H_PrevAndNext(pageId, nodeId, head,
435                            orderByComparator);
436            }
437    
438            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
439                    long nodeId, java.lang.String parentTitle)
440                    throws com.liferay.portal.kernel.exception.SystemException {
441                    return getPersistence().findByN_P(nodeId, parentTitle);
442            }
443    
444            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
445                    long nodeId, java.lang.String parentTitle, int start, int end)
446                    throws com.liferay.portal.kernel.exception.SystemException {
447                    return getPersistence().findByN_P(nodeId, parentTitle, start, end);
448            }
449    
450            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
451                    long nodeId, java.lang.String parentTitle, int start, int end,
452                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
453                    throws com.liferay.portal.kernel.exception.SystemException {
454                    return getPersistence()
455                                       .findByN_P(nodeId, parentTitle, start, end, orderByComparator);
456            }
457    
458            public static com.liferay.portlet.wiki.model.WikiPage findByN_P_First(
459                    long nodeId, java.lang.String parentTitle,
460                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
461                    throws com.liferay.portal.kernel.exception.SystemException,
462                            com.liferay.portlet.wiki.NoSuchPageException {
463                    return getPersistence()
464                                       .findByN_P_First(nodeId, parentTitle, orderByComparator);
465            }
466    
467            public static com.liferay.portlet.wiki.model.WikiPage findByN_P_Last(
468                    long nodeId, java.lang.String parentTitle,
469                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
470                    throws com.liferay.portal.kernel.exception.SystemException,
471                            com.liferay.portlet.wiki.NoSuchPageException {
472                    return getPersistence()
473                                       .findByN_P_Last(nodeId, parentTitle, orderByComparator);
474            }
475    
476            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_P_PrevAndNext(
477                    long pageId, long nodeId, java.lang.String parentTitle,
478                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
479                    throws com.liferay.portal.kernel.exception.SystemException,
480                            com.liferay.portlet.wiki.NoSuchPageException {
481                    return getPersistence()
482                                       .findByN_P_PrevAndNext(pageId, nodeId, parentTitle,
483                            orderByComparator);
484            }
485    
486            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
487                    long nodeId, java.lang.String redirectTitle)
488                    throws com.liferay.portal.kernel.exception.SystemException {
489                    return getPersistence().findByN_R(nodeId, redirectTitle);
490            }
491    
492            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
493                    long nodeId, java.lang.String redirectTitle, int start, int end)
494                    throws com.liferay.portal.kernel.exception.SystemException {
495                    return getPersistence().findByN_R(nodeId, redirectTitle, start, end);
496            }
497    
498            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
499                    long nodeId, java.lang.String redirectTitle, int start, int end,
500                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
501                    throws com.liferay.portal.kernel.exception.SystemException {
502                    return getPersistence()
503                                       .findByN_R(nodeId, redirectTitle, start, end,
504                            orderByComparator);
505            }
506    
507            public static com.liferay.portlet.wiki.model.WikiPage findByN_R_First(
508                    long nodeId, java.lang.String redirectTitle,
509                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
510                    throws com.liferay.portal.kernel.exception.SystemException,
511                            com.liferay.portlet.wiki.NoSuchPageException {
512                    return getPersistence()
513                                       .findByN_R_First(nodeId, redirectTitle, orderByComparator);
514            }
515    
516            public static com.liferay.portlet.wiki.model.WikiPage findByN_R_Last(
517                    long nodeId, java.lang.String redirectTitle,
518                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
519                    throws com.liferay.portal.kernel.exception.SystemException,
520                            com.liferay.portlet.wiki.NoSuchPageException {
521                    return getPersistence()
522                                       .findByN_R_Last(nodeId, redirectTitle, orderByComparator);
523            }
524    
525            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_R_PrevAndNext(
526                    long pageId, long nodeId, java.lang.String redirectTitle,
527                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
528                    throws com.liferay.portal.kernel.exception.SystemException,
529                            com.liferay.portlet.wiki.NoSuchPageException {
530                    return getPersistence()
531                                       .findByN_R_PrevAndNext(pageId, nodeId, redirectTitle,
532                            orderByComparator);
533            }
534    
535            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
536                    long nodeId, int status)
537                    throws com.liferay.portal.kernel.exception.SystemException {
538                    return getPersistence().findByN_S(nodeId, status);
539            }
540    
541            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
542                    long nodeId, int status, int start, int end)
543                    throws com.liferay.portal.kernel.exception.SystemException {
544                    return getPersistence().findByN_S(nodeId, status, start, end);
545            }
546    
547            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
548                    long nodeId, int status, int start, int end,
549                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
550                    throws com.liferay.portal.kernel.exception.SystemException {
551                    return getPersistence()
552                                       .findByN_S(nodeId, status, start, end, orderByComparator);
553            }
554    
555            public static com.liferay.portlet.wiki.model.WikiPage findByN_S_First(
556                    long nodeId, int status,
557                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
558                    throws com.liferay.portal.kernel.exception.SystemException,
559                            com.liferay.portlet.wiki.NoSuchPageException {
560                    return getPersistence()
561                                       .findByN_S_First(nodeId, status, orderByComparator);
562            }
563    
564            public static com.liferay.portlet.wiki.model.WikiPage findByN_S_Last(
565                    long nodeId, int status,
566                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
567                    throws com.liferay.portal.kernel.exception.SystemException,
568                            com.liferay.portlet.wiki.NoSuchPageException {
569                    return getPersistence().findByN_S_Last(nodeId, status, orderByComparator);
570            }
571    
572            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_S_PrevAndNext(
573                    long pageId, long nodeId, int status,
574                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
575                    throws com.liferay.portal.kernel.exception.SystemException,
576                            com.liferay.portlet.wiki.NoSuchPageException {
577                    return getPersistence()
578                                       .findByN_S_PrevAndNext(pageId, nodeId, status,
579                            orderByComparator);
580            }
581    
582            public static com.liferay.portlet.wiki.model.WikiPage findByR_N_V(
583                    long resourcePrimKey, long nodeId, double version)
584                    throws com.liferay.portal.kernel.exception.SystemException,
585                            com.liferay.portlet.wiki.NoSuchPageException {
586                    return getPersistence().findByR_N_V(resourcePrimKey, nodeId, version);
587            }
588    
589            public static com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
590                    long resourcePrimKey, long nodeId, double version)
591                    throws com.liferay.portal.kernel.exception.SystemException {
592                    return getPersistence().fetchByR_N_V(resourcePrimKey, nodeId, version);
593            }
594    
595            public static com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
596                    long resourcePrimKey, long nodeId, double version,
597                    boolean retrieveFromCache)
598                    throws com.liferay.portal.kernel.exception.SystemException {
599                    return getPersistence()
600                                       .fetchByR_N_V(resourcePrimKey, nodeId, version,
601                            retrieveFromCache);
602            }
603    
604            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
605                    long resourcePrimKey, long nodeId, int status)
606                    throws com.liferay.portal.kernel.exception.SystemException {
607                    return getPersistence().findByR_N_S(resourcePrimKey, nodeId, status);
608            }
609    
610            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
611                    long resourcePrimKey, long nodeId, int status, int start, int end)
612                    throws com.liferay.portal.kernel.exception.SystemException {
613                    return getPersistence()
614                                       .findByR_N_S(resourcePrimKey, nodeId, status, start, end);
615            }
616    
617            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
618                    long resourcePrimKey, long nodeId, int status, int start, int end,
619                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
620                    throws com.liferay.portal.kernel.exception.SystemException {
621                    return getPersistence()
622                                       .findByR_N_S(resourcePrimKey, nodeId, status, start, end,
623                            orderByComparator);
624            }
625    
626            public static com.liferay.portlet.wiki.model.WikiPage findByR_N_S_First(
627                    long resourcePrimKey, long nodeId, int status,
628                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
629                    throws com.liferay.portal.kernel.exception.SystemException,
630                            com.liferay.portlet.wiki.NoSuchPageException {
631                    return getPersistence()
632                                       .findByR_N_S_First(resourcePrimKey, nodeId, status,
633                            orderByComparator);
634            }
635    
636            public static com.liferay.portlet.wiki.model.WikiPage findByR_N_S_Last(
637                    long resourcePrimKey, long nodeId, int status,
638                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
639                    throws com.liferay.portal.kernel.exception.SystemException,
640                            com.liferay.portlet.wiki.NoSuchPageException {
641                    return getPersistence()
642                                       .findByR_N_S_Last(resourcePrimKey, nodeId, status,
643                            orderByComparator);
644            }
645    
646            public static com.liferay.portlet.wiki.model.WikiPage[] findByR_N_S_PrevAndNext(
647                    long pageId, long resourcePrimKey, long nodeId, int status,
648                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
649                    throws com.liferay.portal.kernel.exception.SystemException,
650                            com.liferay.portlet.wiki.NoSuchPageException {
651                    return getPersistence()
652                                       .findByR_N_S_PrevAndNext(pageId, resourcePrimKey, nodeId,
653                            status, orderByComparator);
654            }
655    
656            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
657                    long userId, long nodeId, int status)
658                    throws com.liferay.portal.kernel.exception.SystemException {
659                    return getPersistence().findByU_N_S(userId, nodeId, status);
660            }
661    
662            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
663                    long userId, long nodeId, int status, int start, int end)
664                    throws com.liferay.portal.kernel.exception.SystemException {
665                    return getPersistence().findByU_N_S(userId, nodeId, status, start, end);
666            }
667    
668            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
669                    long userId, long nodeId, int status, int start, int end,
670                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
671                    throws com.liferay.portal.kernel.exception.SystemException {
672                    return getPersistence()
673                                       .findByU_N_S(userId, nodeId, status, start, end,
674                            orderByComparator);
675            }
676    
677            public static com.liferay.portlet.wiki.model.WikiPage findByU_N_S_First(
678                    long userId, long nodeId, int status,
679                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
680                    throws com.liferay.portal.kernel.exception.SystemException,
681                            com.liferay.portlet.wiki.NoSuchPageException {
682                    return getPersistence()
683                                       .findByU_N_S_First(userId, nodeId, status, orderByComparator);
684            }
685    
686            public static com.liferay.portlet.wiki.model.WikiPage findByU_N_S_Last(
687                    long userId, long nodeId, int status,
688                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
689                    throws com.liferay.portal.kernel.exception.SystemException,
690                            com.liferay.portlet.wiki.NoSuchPageException {
691                    return getPersistence()
692                                       .findByU_N_S_Last(userId, nodeId, status, orderByComparator);
693            }
694    
695            public static com.liferay.portlet.wiki.model.WikiPage[] findByU_N_S_PrevAndNext(
696                    long pageId, long userId, long nodeId, int status,
697                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
698                    throws com.liferay.portal.kernel.exception.SystemException,
699                            com.liferay.portlet.wiki.NoSuchPageException {
700                    return getPersistence()
701                                       .findByU_N_S_PrevAndNext(pageId, userId, nodeId, status,
702                            orderByComparator);
703            }
704    
705            public static com.liferay.portlet.wiki.model.WikiPage findByN_T_V(
706                    long nodeId, java.lang.String title, double version)
707                    throws com.liferay.portal.kernel.exception.SystemException,
708                            com.liferay.portlet.wiki.NoSuchPageException {
709                    return getPersistence().findByN_T_V(nodeId, title, version);
710            }
711    
712            public static com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(
713                    long nodeId, java.lang.String title, double version)
714                    throws com.liferay.portal.kernel.exception.SystemException {
715                    return getPersistence().fetchByN_T_V(nodeId, title, version);
716            }
717    
718            public static com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(
719                    long nodeId, java.lang.String title, double version,
720                    boolean retrieveFromCache)
721                    throws com.liferay.portal.kernel.exception.SystemException {
722                    return getPersistence()
723                                       .fetchByN_T_V(nodeId, title, version, retrieveFromCache);
724            }
725    
726            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
727                    long nodeId, java.lang.String title, boolean head)
728                    throws com.liferay.portal.kernel.exception.SystemException {
729                    return getPersistence().findByN_T_H(nodeId, title, head);
730            }
731    
732            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
733                    long nodeId, java.lang.String title, boolean head, int start, int end)
734                    throws com.liferay.portal.kernel.exception.SystemException {
735                    return getPersistence().findByN_T_H(nodeId, title, head, start, end);
736            }
737    
738            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
739                    long nodeId, java.lang.String title, boolean head, int start, int end,
740                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
741                    throws com.liferay.portal.kernel.exception.SystemException {
742                    return getPersistence()
743                                       .findByN_T_H(nodeId, title, head, start, end,
744                            orderByComparator);
745            }
746    
747            public static com.liferay.portlet.wiki.model.WikiPage findByN_T_H_First(
748                    long nodeId, java.lang.String title, boolean head,
749                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
750                    throws com.liferay.portal.kernel.exception.SystemException,
751                            com.liferay.portlet.wiki.NoSuchPageException {
752                    return getPersistence()
753                                       .findByN_T_H_First(nodeId, title, head, orderByComparator);
754            }
755    
756            public static com.liferay.portlet.wiki.model.WikiPage findByN_T_H_Last(
757                    long nodeId, java.lang.String title, boolean head,
758                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
759                    throws com.liferay.portal.kernel.exception.SystemException,
760                            com.liferay.portlet.wiki.NoSuchPageException {
761                    return getPersistence()
762                                       .findByN_T_H_Last(nodeId, title, head, orderByComparator);
763            }
764    
765            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_T_H_PrevAndNext(
766                    long pageId, long nodeId, java.lang.String title, boolean head,
767                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
768                    throws com.liferay.portal.kernel.exception.SystemException,
769                            com.liferay.portlet.wiki.NoSuchPageException {
770                    return getPersistence()
771                                       .findByN_T_H_PrevAndNext(pageId, nodeId, title, head,
772                            orderByComparator);
773            }
774    
775            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
776                    long nodeId, java.lang.String title, int status)
777                    throws com.liferay.portal.kernel.exception.SystemException {
778                    return getPersistence().findByN_T_S(nodeId, title, status);
779            }
780    
781            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
782                    long nodeId, java.lang.String title, int status, int start, int end)
783                    throws com.liferay.portal.kernel.exception.SystemException {
784                    return getPersistence().findByN_T_S(nodeId, title, status, start, end);
785            }
786    
787            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
788                    long nodeId, java.lang.String title, int status, int start, int end,
789                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
790                    throws com.liferay.portal.kernel.exception.SystemException {
791                    return getPersistence()
792                                       .findByN_T_S(nodeId, title, status, start, end,
793                            orderByComparator);
794            }
795    
796            public static com.liferay.portlet.wiki.model.WikiPage findByN_T_S_First(
797                    long nodeId, java.lang.String title, int status,
798                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
799                    throws com.liferay.portal.kernel.exception.SystemException,
800                            com.liferay.portlet.wiki.NoSuchPageException {
801                    return getPersistence()
802                                       .findByN_T_S_First(nodeId, title, status, orderByComparator);
803            }
804    
805            public static com.liferay.portlet.wiki.model.WikiPage findByN_T_S_Last(
806                    long nodeId, java.lang.String title, int status,
807                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
808                    throws com.liferay.portal.kernel.exception.SystemException,
809                            com.liferay.portlet.wiki.NoSuchPageException {
810                    return getPersistence()
811                                       .findByN_T_S_Last(nodeId, title, status, orderByComparator);
812            }
813    
814            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_T_S_PrevAndNext(
815                    long pageId, long nodeId, java.lang.String title, int status,
816                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
817                    throws com.liferay.portal.kernel.exception.SystemException,
818                            com.liferay.portlet.wiki.NoSuchPageException {
819                    return getPersistence()
820                                       .findByN_T_S_PrevAndNext(pageId, nodeId, title, status,
821                            orderByComparator);
822            }
823    
824            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
825                    long nodeId, boolean head, java.lang.String parentTitle)
826                    throws com.liferay.portal.kernel.exception.SystemException {
827                    return getPersistence().findByN_H_P(nodeId, head, parentTitle);
828            }
829    
830            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
831                    long nodeId, boolean head, java.lang.String parentTitle, int start,
832                    int end) throws com.liferay.portal.kernel.exception.SystemException {
833                    return getPersistence()
834                                       .findByN_H_P(nodeId, head, parentTitle, start, end);
835            }
836    
837            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
838                    long nodeId, boolean head, java.lang.String parentTitle, int start,
839                    int end,
840                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
841                    throws com.liferay.portal.kernel.exception.SystemException {
842                    return getPersistence()
843                                       .findByN_H_P(nodeId, head, parentTitle, start, end,
844                            orderByComparator);
845            }
846    
847            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_First(
848                    long nodeId, boolean head, java.lang.String parentTitle,
849                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
850                    throws com.liferay.portal.kernel.exception.SystemException,
851                            com.liferay.portlet.wiki.NoSuchPageException {
852                    return getPersistence()
853                                       .findByN_H_P_First(nodeId, head, parentTitle,
854                            orderByComparator);
855            }
856    
857            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_Last(
858                    long nodeId, boolean head, java.lang.String parentTitle,
859                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
860                    throws com.liferay.portal.kernel.exception.SystemException,
861                            com.liferay.portlet.wiki.NoSuchPageException {
862                    return getPersistence()
863                                       .findByN_H_P_Last(nodeId, head, parentTitle,
864                            orderByComparator);
865            }
866    
867            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_PrevAndNext(
868                    long pageId, long nodeId, boolean head, java.lang.String parentTitle,
869                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
870                    throws com.liferay.portal.kernel.exception.SystemException,
871                            com.liferay.portlet.wiki.NoSuchPageException {
872                    return getPersistence()
873                                       .findByN_H_P_PrevAndNext(pageId, nodeId, head, parentTitle,
874                            orderByComparator);
875            }
876    
877            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
878                    long nodeId, boolean head, int status)
879                    throws com.liferay.portal.kernel.exception.SystemException {
880                    return getPersistence().findByN_H_S(nodeId, head, status);
881            }
882    
883            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
884                    long nodeId, boolean head, int status, int start, int end)
885                    throws com.liferay.portal.kernel.exception.SystemException {
886                    return getPersistence().findByN_H_S(nodeId, head, status, start, end);
887            }
888    
889            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
890                    long nodeId, boolean head, int status, int start, int end,
891                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
892                    throws com.liferay.portal.kernel.exception.SystemException {
893                    return getPersistence()
894                                       .findByN_H_S(nodeId, head, status, start, end,
895                            orderByComparator);
896            }
897    
898            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_S_First(
899                    long nodeId, boolean head, int status,
900                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
901                    throws com.liferay.portal.kernel.exception.SystemException,
902                            com.liferay.portlet.wiki.NoSuchPageException {
903                    return getPersistence()
904                                       .findByN_H_S_First(nodeId, head, status, orderByComparator);
905            }
906    
907            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_S_Last(
908                    long nodeId, boolean head, int status,
909                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
910                    throws com.liferay.portal.kernel.exception.SystemException,
911                            com.liferay.portlet.wiki.NoSuchPageException {
912                    return getPersistence()
913                                       .findByN_H_S_Last(nodeId, head, status, orderByComparator);
914            }
915    
916            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_S_PrevAndNext(
917                    long pageId, long nodeId, boolean head, int status,
918                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
919                    throws com.liferay.portal.kernel.exception.SystemException,
920                            com.liferay.portlet.wiki.NoSuchPageException {
921                    return getPersistence()
922                                       .findByN_H_S_PrevAndNext(pageId, nodeId, head, status,
923                            orderByComparator);
924            }
925    
926            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
927                    long nodeId, boolean head, java.lang.String parentTitle, int status)
928                    throws com.liferay.portal.kernel.exception.SystemException {
929                    return getPersistence().findByN_H_P_S(nodeId, head, parentTitle, status);
930            }
931    
932            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
933                    long nodeId, boolean head, java.lang.String parentTitle, int status,
934                    int start, int end)
935                    throws com.liferay.portal.kernel.exception.SystemException {
936                    return getPersistence()
937                                       .findByN_H_P_S(nodeId, head, parentTitle, status, start, end);
938            }
939    
940            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
941                    long nodeId, boolean head, java.lang.String parentTitle, int status,
942                    int start, int end,
943                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
944                    throws com.liferay.portal.kernel.exception.SystemException {
945                    return getPersistence()
946                                       .findByN_H_P_S(nodeId, head, parentTitle, status, start,
947                            end, orderByComparator);
948            }
949    
950            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_First(
951                    long nodeId, boolean head, java.lang.String parentTitle, int status,
952                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
953                    throws com.liferay.portal.kernel.exception.SystemException,
954                            com.liferay.portlet.wiki.NoSuchPageException {
955                    return getPersistence()
956                                       .findByN_H_P_S_First(nodeId, head, parentTitle, status,
957                            orderByComparator);
958            }
959    
960            public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_Last(
961                    long nodeId, boolean head, java.lang.String parentTitle, int status,
962                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
963                    throws com.liferay.portal.kernel.exception.SystemException,
964                            com.liferay.portlet.wiki.NoSuchPageException {
965                    return getPersistence()
966                                       .findByN_H_P_S_Last(nodeId, head, parentTitle, status,
967                            orderByComparator);
968            }
969    
970            public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_S_PrevAndNext(
971                    long pageId, long nodeId, boolean head, java.lang.String parentTitle,
972                    int status,
973                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
974                    throws com.liferay.portal.kernel.exception.SystemException,
975                            com.liferay.portlet.wiki.NoSuchPageException {
976                    return getPersistence()
977                                       .findByN_H_P_S_PrevAndNext(pageId, nodeId, head,
978                            parentTitle, status, orderByComparator);
979            }
980    
981            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll()
982                    throws com.liferay.portal.kernel.exception.SystemException {
983                    return getPersistence().findAll();
984            }
985    
986            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
987                    int start, int end)
988                    throws com.liferay.portal.kernel.exception.SystemException {
989                    return getPersistence().findAll(start, end);
990            }
991    
992            public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
993                    int start, int end,
994                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
995                    throws com.liferay.portal.kernel.exception.SystemException {
996                    return getPersistence().findAll(start, end, orderByComparator);
997            }
998    
999            public static void removeByUuid(java.lang.String uuid)
1000                    throws com.liferay.portal.kernel.exception.SystemException {
1001                    getPersistence().removeByUuid(uuid);
1002            }
1003    
1004            public static void removeByUUID_G(java.lang.String uuid, long groupId)
1005                    throws com.liferay.portal.kernel.exception.SystemException,
1006                            com.liferay.portlet.wiki.NoSuchPageException {
1007                    getPersistence().removeByUUID_G(uuid, groupId);
1008            }
1009    
1010            public static void removeByNodeId(long nodeId)
1011                    throws com.liferay.portal.kernel.exception.SystemException {
1012                    getPersistence().removeByNodeId(nodeId);
1013            }
1014    
1015            public static void removeByFormat(java.lang.String format)
1016                    throws com.liferay.portal.kernel.exception.SystemException {
1017                    getPersistence().removeByFormat(format);
1018            }
1019    
1020            public static void removeByR_N(long resourcePrimKey, long nodeId)
1021                    throws com.liferay.portal.kernel.exception.SystemException {
1022                    getPersistence().removeByR_N(resourcePrimKey, nodeId);
1023            }
1024    
1025            public static void removeByN_T(long nodeId, java.lang.String title)
1026                    throws com.liferay.portal.kernel.exception.SystemException {
1027                    getPersistence().removeByN_T(nodeId, title);
1028            }
1029    
1030            public static void removeByN_H(long nodeId, boolean head)
1031                    throws com.liferay.portal.kernel.exception.SystemException {
1032                    getPersistence().removeByN_H(nodeId, head);
1033            }
1034    
1035            public static void removeByN_P(long nodeId, java.lang.String parentTitle)
1036                    throws com.liferay.portal.kernel.exception.SystemException {
1037                    getPersistence().removeByN_P(nodeId, parentTitle);
1038            }
1039    
1040            public static void removeByN_R(long nodeId, java.lang.String redirectTitle)
1041                    throws com.liferay.portal.kernel.exception.SystemException {
1042                    getPersistence().removeByN_R(nodeId, redirectTitle);
1043            }
1044    
1045            public static void removeByN_S(long nodeId, int status)
1046                    throws com.liferay.portal.kernel.exception.SystemException {
1047                    getPersistence().removeByN_S(nodeId, status);
1048            }
1049    
1050            public static void removeByR_N_V(long resourcePrimKey, long nodeId,
1051                    double version)
1052                    throws com.liferay.portal.kernel.exception.SystemException,
1053                            com.liferay.portlet.wiki.NoSuchPageException {
1054                    getPersistence().removeByR_N_V(resourcePrimKey, nodeId, version);
1055            }
1056    
1057            public static void removeByR_N_S(long resourcePrimKey, long nodeId,
1058                    int status) throws com.liferay.portal.kernel.exception.SystemException {
1059                    getPersistence().removeByR_N_S(resourcePrimKey, nodeId, status);
1060            }
1061    
1062            public static void removeByU_N_S(long userId, long nodeId, int status)
1063                    throws com.liferay.portal.kernel.exception.SystemException {
1064                    getPersistence().removeByU_N_S(userId, nodeId, status);
1065            }
1066    
1067            public static void removeByN_T_V(long nodeId, java.lang.String title,
1068                    double version)
1069                    throws com.liferay.portal.kernel.exception.SystemException,
1070                            com.liferay.portlet.wiki.NoSuchPageException {
1071                    getPersistence().removeByN_T_V(nodeId, title, version);
1072            }
1073    
1074            public static void removeByN_T_H(long nodeId, java.lang.String title,
1075                    boolean head)
1076                    throws com.liferay.portal.kernel.exception.SystemException {
1077                    getPersistence().removeByN_T_H(nodeId, title, head);
1078            }
1079    
1080            public static void removeByN_T_S(long nodeId, java.lang.String title,
1081                    int status) throws com.liferay.portal.kernel.exception.SystemException {
1082                    getPersistence().removeByN_T_S(nodeId, title, status);
1083            }
1084    
1085            public static void removeByN_H_P(long nodeId, boolean head,
1086                    java.lang.String parentTitle)
1087                    throws com.liferay.portal.kernel.exception.SystemException {
1088                    getPersistence().removeByN_H_P(nodeId, head, parentTitle);
1089            }
1090    
1091            public static void removeByN_H_S(long nodeId, boolean head, int status)
1092                    throws com.liferay.portal.kernel.exception.SystemException {
1093                    getPersistence().removeByN_H_S(nodeId, head, status);
1094            }
1095    
1096            public static void removeByN_H_P_S(long nodeId, boolean head,
1097                    java.lang.String parentTitle, int status)
1098                    throws com.liferay.portal.kernel.exception.SystemException {
1099                    getPersistence().removeByN_H_P_S(nodeId, head, parentTitle, status);
1100            }
1101    
1102            public static void removeAll()
1103                    throws com.liferay.portal.kernel.exception.SystemException {
1104                    getPersistence().removeAll();
1105            }
1106    
1107            public static int countByUuid(java.lang.String uuid)
1108                    throws com.liferay.portal.kernel.exception.SystemException {
1109                    return getPersistence().countByUuid(uuid);
1110            }
1111    
1112            public static int countByUUID_G(java.lang.String uuid, long groupId)
1113                    throws com.liferay.portal.kernel.exception.SystemException {
1114                    return getPersistence().countByUUID_G(uuid, groupId);
1115            }
1116    
1117            public static int countByNodeId(long nodeId)
1118                    throws com.liferay.portal.kernel.exception.SystemException {
1119                    return getPersistence().countByNodeId(nodeId);
1120            }
1121    
1122            public static int countByFormat(java.lang.String format)
1123                    throws com.liferay.portal.kernel.exception.SystemException {
1124                    return getPersistence().countByFormat(format);
1125            }
1126    
1127            public static int countByR_N(long resourcePrimKey, long nodeId)
1128                    throws com.liferay.portal.kernel.exception.SystemException {
1129                    return getPersistence().countByR_N(resourcePrimKey, nodeId);
1130            }
1131    
1132            public static int countByN_T(long nodeId, java.lang.String title)
1133                    throws com.liferay.portal.kernel.exception.SystemException {
1134                    return getPersistence().countByN_T(nodeId, title);
1135            }
1136    
1137            public static int countByN_H(long nodeId, boolean head)
1138                    throws com.liferay.portal.kernel.exception.SystemException {
1139                    return getPersistence().countByN_H(nodeId, head);
1140            }
1141    
1142            public static int countByN_P(long nodeId, java.lang.String parentTitle)
1143                    throws com.liferay.portal.kernel.exception.SystemException {
1144                    return getPersistence().countByN_P(nodeId, parentTitle);
1145            }
1146    
1147            public static int countByN_R(long nodeId, java.lang.String redirectTitle)
1148                    throws com.liferay.portal.kernel.exception.SystemException {
1149                    return getPersistence().countByN_R(nodeId, redirectTitle);
1150            }
1151    
1152            public static int countByN_S(long nodeId, int status)
1153                    throws com.liferay.portal.kernel.exception.SystemException {
1154                    return getPersistence().countByN_S(nodeId, status);
1155            }
1156    
1157            public static int countByR_N_V(long resourcePrimKey, long nodeId,
1158                    double version)
1159                    throws com.liferay.portal.kernel.exception.SystemException {
1160                    return getPersistence().countByR_N_V(resourcePrimKey, nodeId, version);
1161            }
1162    
1163            public static int countByR_N_S(long resourcePrimKey, long nodeId, int status)
1164                    throws com.liferay.portal.kernel.exception.SystemException {
1165                    return getPersistence().countByR_N_S(resourcePrimKey, nodeId, status);
1166            }
1167    
1168            public static int countByU_N_S(long userId, long nodeId, int status)
1169                    throws com.liferay.portal.kernel.exception.SystemException {
1170                    return getPersistence().countByU_N_S(userId, nodeId, status);
1171            }
1172    
1173            public static int countByN_T_V(long nodeId, java.lang.String title,
1174                    double version)
1175                    throws com.liferay.portal.kernel.exception.SystemException {
1176                    return getPersistence().countByN_T_V(nodeId, title, version);
1177            }
1178    
1179            public static int countByN_T_H(long nodeId, java.lang.String title,
1180                    boolean head)
1181                    throws com.liferay.portal.kernel.exception.SystemException {
1182                    return getPersistence().countByN_T_H(nodeId, title, head);
1183            }
1184    
1185            public static int countByN_T_S(long nodeId, java.lang.String title,
1186                    int status) throws com.liferay.portal.kernel.exception.SystemException {
1187                    return getPersistence().countByN_T_S(nodeId, title, status);
1188            }
1189    
1190            public static int countByN_H_P(long nodeId, boolean head,
1191                    java.lang.String parentTitle)
1192                    throws com.liferay.portal.kernel.exception.SystemException {
1193                    return getPersistence().countByN_H_P(nodeId, head, parentTitle);
1194            }
1195    
1196            public static int countByN_H_S(long nodeId, boolean head, int status)
1197                    throws com.liferay.portal.kernel.exception.SystemException {
1198                    return getPersistence().countByN_H_S(nodeId, head, status);
1199            }
1200    
1201            public static int countByN_H_P_S(long nodeId, boolean head,
1202                    java.lang.String parentTitle, int status)
1203                    throws com.liferay.portal.kernel.exception.SystemException {
1204                    return getPersistence().countByN_H_P_S(nodeId, head, parentTitle, status);
1205            }
1206    
1207            public static int countAll()
1208                    throws com.liferay.portal.kernel.exception.SystemException {
1209                    return getPersistence().countAll();
1210            }
1211    
1212            public static WikiPagePersistence getPersistence() {
1213                    if (_persistence == null) {
1214                            _persistence = (WikiPagePersistence)PortalBeanLocatorUtil.locate(WikiPagePersistence.class.getName());
1215                    }
1216    
1217                    return _persistence;
1218            }
1219    
1220            public void setPersistence(WikiPagePersistence persistence) {
1221                    _persistence = persistence;
1222            }
1223    
1224            private static WikiPagePersistence _persistence;
1225    }